.login-box, .register-box {
    width: 420px;
    max-width: 90%;
    margin: auto;
}

/* Login Header/Logo Styling */
.login-logo {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
}

.login-logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.login-logo a:hover {
    transform: scale(1.05);
    text-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.login-logo img {
    margin-right: 15px;
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.login-box .brand-text {
    color1: #fff !important;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}



.login-card-body {
    padding: 3rem 2.5rem;
}

/* Login Message */
.login-box-msg {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .login-card-body {
        padding: 2rem 1.5rem;
    }
    
    .login-logo a {
        font-size: 2rem;
    }
    
    .brand-text {
        font-size: 2rem;
    }
}