/* Modern Minimalist Template CSS */
.modern-minimalist {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #333;
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.login-box {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 40px;
    overflow: hidden;
    position: relative;
}

.login-box h1 {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 400;
    color: #333;
    text-align: center;
}

.login-box h2 {
    margin: 0 0 30px;
    font-size: 18px;
    font-weight: 500;
    color: #555;
    text-align: center;
}

.error-message {
    background-color: #fff2f0;
    color: #ff4d4f;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.error-message svg {
    margin-right: 8px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border 0.3s ease;
    box-sizing: border-box;
}

.input-group input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.password-hint {
    background-color: #f9f9f9;
    padding: 10px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
}

.password-hint svg {
    margin-right: 8px;
    flex-shrink: 0;
}

.submit-button {
    width: 100%;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #3d7ec9;
}

@media (max-width: 480px) {
    .login-box {
        padding: 30px 20px;
    }
}