.auth-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    margin: 20px auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}
.nav-tabs {
    border-bottom: 2px solid #40b3b8;
    margin-bottom: 20px;
}
.nav-tabs .nav-link {
    color: #333;
    font-weight: 500;
    padding: 10px 30px;
    border: none;
    border-radius: 5px 5px 0 0;
}
.nav-tabs .nav-link.active {
    background: #40b3b8;
    color: white;
}
.auth-form {
    width: 100%;
}
.auth-input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}
.auth-button {
    width: 100%;
    padding: 12px;
    background: #40b3b8;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}
.auth-button:hover {
    background: #0056b3;
}
.alert {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}
.alert-danger {
    background: #f8d7da;
    color: #721c24;
}
.alert-success {
    background: #d4edda;
    color: #155724;
}
.super_container {
    position: relative;
    z-index: 1;
}
.auth_home_slider_content {
    min-height: 850px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth_home_slider_content .container .row .text-center {
   text-align: center;
   margin-top: 150px;
}

@media only screen and (max-width: 768px) {

    .super_container {
        position: relative;
        z-index: 1;
        min-height: 850px;
    }
    .auth_home_slider_container {
        width: 100%;
        height: 100%;
        min-height: 850px;
    }
    .auth-container {
        padding: 20px;
        margin: 10px;
    }
    .nav-tabs .nav-link {
        padding: 10px 20px;
    }
    .auth-input, .auth-button {
        padding: 10px;
        font-size: 14px;
    }
}   