@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form_container {
    width: 360px;
    max-width: 92vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 38px 28px 28px 28px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    box-shadow: 0 6px 32px 0 rgba(31, 38, 135, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-family: "Inter", sans-serif;
}

.logo_container {
    width: 80px;
    height: 80px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.logo_container img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    opacity: 0.92;
}

.title_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #212121;
}

.subtitle {
    font-size: 0.725rem;
    max-width: 80%;
    text-align: center;
    line-height: 1.1rem;
    color: #8B8E98
}

.input_container {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.icon {
    width: 20px;
    position: absolute;
    z-index: 99;
    left: 12px;
    bottom: 9px;
}

.input_label {
    font-size: 0.75rem;
    color: #8B8E98;
    font-weight: 600;
}

.input_field {
    width: 88%;
    height: 40px;
    padding: 0 0 0 40px;
    border-radius: 7px;
    margin-right: 40px;
    outline: none;
    border: 1px solid #e5e5e5;
    background: rgba(255, 255, 255, 0.7);
    filter: drop-shadow(0px 1px 0px #efefef) drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));
    transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
    font-size: 1rem;
}

.input_field:focus {
    border: 1px solid #2d89ef;
    box-shadow: 0px 0px 0px 2px #2d89ef33;
    background-color: #fff;
}

.sign-in_btn {
    width: 100%;
    height: 40px;
    border: 0;
    background: #115DFC;
    border-radius: 7px;
    outline: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 8px;
    margin-bottom: 10px;
    transition: background 0.2s;
}

.sign-in_btn:hover {
    background: #1b5fa7;
}

.separator {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    color: #8B8E98;
}

.separator .line {
    display: block;
    width: 100%;
    height: 1px;
    border: 0;
    background-color: #8B8E98;
}

.note {
    font-size: 0.75rem;
    color: #8B8E98;
    text-decoration: underline;
    margin-top: 8px;
}

.links {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}

.links a {
    color: #2d89ef;
    text-decoration: none;
    font-size: 0.97rem;
    transition: color 0.2s;
}

.links a:hover {
    color: #1b5fa7;
}

.alert {
    background: rgba(255, 0, 0, 0.13);
    color: #b00;
    padding: 9px;
    border-radius: 6px;
    margin-bottom: 14px;
    text-align: center;
    font-size: 0.97rem;
    width: 100%;
}

.alert-success {
    background: rgba(0, 180, 0, 0.13);
    color: #0a7b0a;
}

@media (max-width: 400px) {
    .form_container {
        padding: 18px 6vw;
    }
}