#login-form {
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 2rem;
    padding: 2.2rem 2rem 1.8rem 2rem;
    box-shadow: 0 1px 12px 2px rgba(40,50,90,.08);
    font-family: 'Poppins', 'Inter', Arial, sans-serif;
}
@media (min-width: 1024px) {
    body {
        height: 100vh;
        min-height: 100vh;
        overflow-y: hidden;
    }
    #login-form {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        box-shadow: 0 4px 36px 0 rgba(25,34,56,.14);
    }
}
.input-wrapper {
    margin-bottom: 1.1rem;
    position: relative;
    background: transparent;
}
.input-wrapper::after {
    content: "";
    display: block;
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: #e3e7ed;
    border-radius: 0 0 3px 3px;
    pointer-events: none;
    transition: background .17s;
    z-index: 2;
}
.input-wrapper.field-error::after {
    background: #e63946 !important;
}
.input-wrapper.field-success::after {
    background: #1366ff !important;
}
.input-wrapper input, .input-wrapper input:focus {
    border: none !important;
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
    width: 100%;
    font-size: 1.05rem;
    padding: .7rem .2rem .5rem .9rem !important;
    margin: 0;
    color: #1d293b;
}
label {
    font-weight: 500;
    font-size: .98rem;
    color: #1d293b;
    margin-bottom: 2px;
    display: block;
}
#login-form .error-msg {
    color: #e63946;
    font-size: .85rem;
    margin-top: 2px;
}
.sign-in_btn {
    background: #7c3aed;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1.09rem;
    padding: .7rem 0;
    color: #fff;
    box-shadow: 0 2px 12px 0 rgba(124,58,237,.10);
    transition: background .14s;
    border: none;
    margin-top: 0.7rem;
}
.sign-in_btn:hover {
    background: #6d28d9;
}
.sign-in_apl {
    width: 100%;
    padding: .7rem 0;
    border-radius: 999px;
    background: #2f333b;
    color: white;
    font-weight: 600;
    font-size: 1.07rem;
    border: none;
    margin-top: 2px;
    transition: background .15s;
}
.sign-in_apl:hover {
    background: #34383f;
}
.separator {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    margin: 1.4rem 0 0.9rem 0;
}
.separator .line {
    flex: 1;
    border: none;
    border-top: 1.5px solid #e3e7ed;
}
.separator span {
    color: #949bb6;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .02em;
    margin-bottom: 2px;
}