/* Gemeinsame Styles sind jetzt in startseiten-common.css */
/* Nur spezielle Login-Styles bleiben hier */

#btn-resend {
    margin-top: 15px;
    padding: 10px 0;
    background: linear-gradient(135deg, #4e8cff, #1e3a5c);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(78, 140, 255, 0.3);
}

#btn-resend:hover {
    background: linear-gradient(135deg, #1e3a5c, #4e8cff);
    box-shadow: 0 0 20px rgba(78, 140, 255, 0.5);
    transform: translateY(-1px);
}

/* Spezielle Login-Styles */
#btn-resend {
    margin-top: 15px;
    padding: 10px 0;
    background: linear-gradient(135deg, #4e8cff, #1e3a5c);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(78, 140, 255, 0.3);
}

#btn-resend:hover {
    background: linear-gradient(135deg, #1e3a5c, #4e8cff);
    box-shadow: 0 0 20px rgba(78, 140, 255, 0.5);
    transform: translateY(-1px);
}

#login-forgot-link {
    font-size: 0.95rem;
    color: #b0c4ff;
}

#login-forgot-link:hover {
    color: #00c3ff;
    text-shadow: 0 0 8px rgba(0, 195, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 480px) {
    .login-container {
        margin: 40px 20px;
        padding: 30px 25px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .lang-switch {
        top: 15px;
        right: 20px;
        padding: 4px 10px;
    }
} 