/* * {
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #cce7e8, #0e7490);
    display: flex;
    align-items: center;
    justify-content: center;
} */

.login_container {
    width: 100%;
    padding: 100px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.login_card {
    max-width: 800px;
    margin: auto;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 20px 40px rgb(0 0 0 / 50%);
}

/* LEFT */
.login_left {
    flex: 1;
    padding: 40px 30px;

}

.login_left h2 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-align: center;
}

.login_social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.login_social span {
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.login_or {
    font-size: 13px;
    color: #777;
    margin-bottom: 20px;
    text-align: center;
}


.login_span {
    font-size: 15px;
    color: #777;
    font-style: italic;
    margin-bottom: 0rem;
    text-align: left;
}


.login_left input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: none;
    background: #f0f0f0;
}

.login_forgot {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
}

.login_btn {
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.login_primary {
    background: #346db4;
    color: white;
}

.login_warning {
    background: #da9022;
    color: white;
}

/* RIGHT */
.login_right {
    flex: 1;
    background: linear-gradient(135deg, #0ea5b7, #346db4);
    color: white;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.login_right h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.login_right p {
    margin-bottom: 30px;
    font-size: 14px;
}

.login_outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
    .login_card {
        flex-direction: column;
    }

    .login_right {
        border-radius: 0 0 30px 30px;
    }

    .login_container {
        width: 100%;
        padding: 20px;
    }

}