/* assets/css/login/options.css - Styles für Login-Optionen */

.login-options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.login-option {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    height: 280px;
    border: none;
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.login-option::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255,255,255,0.5);
}

.login-option:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    text-decoration: none;
    color: white;
}

/* Farbvarianten */
.login-option.master {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.login-option.admin {
    background: linear-gradient(135deg, #48cae4 0%, #0096c7 100%);
}

.login-option.user {
    background: linear-gradient(135deg, #51cf66 0%, #2b8a3e 100%);
}

/* Icons */
.login-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* Content */
.login-content {
    width: 100%;
}

.login-option h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.login-option p {
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Badges */
.login-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Footer */
.login-footer {
    max-width: 500px;
    margin: 0 auto;
}

.login-footer-card {
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.login-footer-text {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}