

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.background-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}



.login-container {
    
    width: 100%;
    max-width: 28rem;
    padding: 0 1.5rem;
    margin: 0 auto;
}

.login-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
#wpbody-content{
    padding-bottom: 0 !important;
    height: 100vh;
}

#wpbody{
    height: 100vh;
}
.logo-container {
    text-align: center;
    
}

.logo {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.title {
    font-size: 1.875rem;
    font-weight: bold;
    background: linear-gradient(to right, #3b82f6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #4d4d4d;
    padding: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.input-container {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 0.75rem;
    top: 55%;
    transform: translateY(-50%);
    color: #64748b;
    width: 1rem;
    height: 1rem;
    z-index: 1;
}

.form-input {
    width: 100%;
    height: 3rem;
    padding: 0 0.75rem 0 2.5rem !important;
    border: 1px solid rgba(203, 213, 225, 0.5) !important;
    border-radius: 0.5rem !important;
    background: rgba(248, 250, 252, 0.5);
    backdrop-filter: blur(10px);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #1e293b;
}
.password-toggle svg{
    vertical-align: middle;
}

.login-button {
    width: 100%;
    height: 3rem;
    background: #1870D5;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    
    margin-bottom: 2rem;
}

.login-button:hover {
    
    background: #0A53A8 !important;
}

.footer-links {
    text-align: center;
    font-size: 0.875rem;
    color: #64748b;
}

.signup-link {
    color: #3b5998;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.signup-link:hover {
    color: #4d4d4d;
    text-decoration: underline;
}

.terms-text {
    font-size: 0.75rem;
    margin-top: 1rem;
    color:#4d4d4d;
}
.error-message{
    color: rgb(244, 100, 100);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}
#error_message {
    height: 35px;
    text-align: center;
    line-height: 35px;
    color: rgb(244, 100, 100);
    visibility: hidden;
}
.error_border{
    border: 1px solid rgb(244, 100, 100) !important;
}
.underline-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    display: block;
    width: 100%;
    height: 0.7px;
    background-color: #1870D5;
}
.underline-link {
    position: relative;
    text-decoration: none;
    color: #4d4d4d;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 1.5rem;
    }
    
    .title {
        font-size: 1.5rem;
    }
}