.auth {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7fb;
}

.auth__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 900px;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* VISUAL */
.auth__visual {
    position: relative;
    background: url('/assets/media/wallpapper/img-2.jpg') center/cover;
}

.auth__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.auth__branding {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
}
h1{
    color: white;
}

/* FORM */
.auth__form {
    padding: 40px;
}

.auth__title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.auth-form__group {
    margin-bottom: 15px;
}

.auth-form__group input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.auth-form__actions {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.auth-form__btn {
    width: 100%;
    padding: 12px;
    background: #1a6dff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 10px;
}

.auth-form__btn--google {
    background: #eee;
    color: #333;
}

.auth-form__divider {
    text-align: center;
    margin: 10px 0;
}

.auth-form__register {
    text-align: center;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .auth__container {
        grid-template-columns: 1fr;
        width: 100%;
        border-radius: 0;
    }

    .auth__visual {
        display: none;
    }
}