.logo {
    display: flex;
    flex-direction: row;
}

.logo__text--primary {
    color: #000dff;
    font-size: 36px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
}

.logo__text--secondary {
    color: #4a4a4a;
    font-size: 36px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
}

.form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 5px;
    padding: 50px;
}

.form__label {
    font-weight: bold;
    margin-bottom: 5px;
}

.form__input {
    border: 2px solid grey;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
    width: 100%;
}

.form__button {
    background-color: #000dff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
}

.form__link {
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    text-align: left;
}

.content {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    gap: 10px 0;
    padding: 10px 0;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo-icon {
    width: 20%;
    min-width: 50px;
    aspect-ratio: 1/1;
    background-image: url(../assets/images/smbb.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.welcome-text {
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    font-weight: bold;
    color: #000dff;
}

.footer {
    display: flex;
    justify-content: center;
    color: #8e8e8e;
    padding: 10% 0;
}