:root 
{
    --primary-color: rgba(12, 52, 110, 1);
    --primary-hover: rgba(12, 52, 110, 0.8);
    --background: rgba(12, 52, 110, 1);
    --form-bg: rgba(255, 255, 255, 0.9);
    --text-light: rgba(255, 255, 255, 0.9);
}

body 
{
    background-color: rgba(12, 52, 110, 1) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100vh !important;
    margin: 0 !important;
}
        
.form-container 
{
    background: var(--form-bg);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(5px);
}

.title 
{
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.submit-btn 
{
    width: 100%;
    margin-top: 20px;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    transition: all 0.3s ease;
}

.submit-btn:hover 
{
    background-color: var(--primary-hover) !important;
    transform: translateY(-1px);
}

.toggle-text 
{
    text-align: center;
    margin-top: 20px;
    color: rgba(0, 0, 0, 0.6);
}

.toggle-text a 
{
    color: var(--primary-color);
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
}

.toggle-text a:hover 
{
    text-decoration: underline;
}

.el-tabs__active-bar 
{
    background-color: var(--primary-color) !important;
    height: 3px !important;
}
.el-tabs__item 
{
    color: rgba(0, 0, 0, 0.6) !important;
    font-size: 16px;
}
.el-tabs__item.is-active 
{
    color: var(--primary-color) !important;
    font-weight: 600;
}
.el-tabs__item:hover 
{
    color: var(--primary-hover) !important;
}
.el-input__inner 
{
    border-radius: 4px !important;
    transition: all 0.3s ease;
}
.el-input__inner:focus 
{
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 8px rgba(12, 52, 110, 0.2);
}