/* Login Page Styles - Kleurspel Branding */

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 75vh;
}

.login-card {
    background: white;
    border-radius: 30px;
    padding: 50px 40px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo img {
    max-width: 250px;
    height: auto;
}

.login-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
}

.login-input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid #e8e8e8;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
    background-color: #fafafa;
}

.login-input:focus {
    border-color: #ff8c42;
    background-color: white;
}

.login-input::placeholder {
    color: #999;
}

.password-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
}

.forgot-password {
    text-align: right;
    margin-bottom: 25px;
}

.forgot-password a {
    color: #ff8c42;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.signin-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.signin-btn:hover {
    background: linear-gradient(135deg, #ff7a2e 0%, #ff5521 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.validation-message {
    color: #f44336;
    font-size: 13px;
    margin-top: 5px;
    margin-left: 20px;
}

/* Confirmation Section */
.confirmation-content {
    text-align: center;
    margin: 30px 0;
}

.confirmation-icon {
    color: #28a745;
    font-size: 64px;
    margin-bottom: 20px;
}

.confirmation-message {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.confirmation-note {
    color: #666;
    font-size: 14px;
    margin-top: 20px;
}

/* Description Text */
.description-text {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
}

/* Back Link */
.back-link {
    text-align: center;
    margin-top: 15px;
}

.back-link a {
    color: #007bff;
    text-decoration: none;
}

.back-link a:hover {
    text-decoration: underline;
}

/* Two-Factor Code Inputs */
.code-inputs-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.code-input {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    background-color: #fafafa;
    outline: none;
    transition: all 0.3s ease;
    color: #333;
}

.code-input:focus {
    border-color: #ff8c42;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.code-input:not(:placeholder-shown) {
    background-color: white;
    border-color: #ff8c42;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
    }
    
    .login-title {
        font-size: 28px;
    }
    
    .login-logo img {
        max-width: 200px;
    }

    .code-input {
        width: 45px;
        height: 55px;
        font-size: 22px;
    }

    .code-inputs-container {
        gap: 8px;
    }
}
