
/* Login/Register Page Styles */

.anubit_footer {
    display: none!important;
}

.access_container {
    min-height: 100vh;
    align-content: center;
}

.login_register {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #0172ff;
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0px 5px 15px rgba(1, 114, 255, 0.5);
    z-index: 10;
}

.login_register_page_button {
    display: flex;
    cursor: pointer;
    background: #eef4ff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.login_register_page_button span {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    color: #0047a5;
}

.login_register_page_button.active {
    background-color: #044aa1 !important;
}

.login_register_page_button.active span {
    color: white;
}

.login_register_page_button:hover {
    background-color: #021022 !important;
}

.login_register_page_button:hover:first-child {
   border-radius: 13px 0px 0px 0px;
}

.login_register_page_button:hover:last-child {
   border-radius: 0px 13px 0px 0px;
}

.login_register_page_button.active:first-child {
    border-radius: 13px 0px 0px 0px;
}

.login_register_page_button.active:last-child {
    border-radius: 0px 13px 0px 0px;
}

.access_form_card {
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 16px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: fadeIn 1s ease;
}

.access_form_card label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #001530;
}

.access_form_card .form-control {
    background-color: #f5f9ff;
    border: 1px solid #0172ff33;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.access_form_card .form-control:focus {
    background-color: #ffffff;
    border-color: #0172ff;
    box-shadow: 0 0 5px rgba(1, 114, 255, 0.5);
    outline: none;
}

.access-button {
    background: linear-gradient(180deg, #0172ff, #0056d2);
    color: #ffffff;
    padding: 12px 0px;
    border: none;
    border-radius: 8px;
    width: 100%;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.access-button:hover {
    background: linear-gradient(180deg, #0056d2, #003e99);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
