/* ไฟล์ CSS สำหรับหน้าเข้าสู่ระบบ */

body {
    font-family: 'Prompt', sans-serif;
    background-color: #f9fafb;
}

.login-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.login-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 28rem;
    padding: 2rem;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo {
    height: 4rem;
    margin-bottom: 1rem;
}

.login-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
}

.login-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.login-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #1f2937;
    transition: all 0.15s ease-in-out;
}

.form-input:focus {
    outline: none;
    border-color: #ec4899;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.login-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #ec4899;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}

.login-button:hover {
    background-color: #db2777;
}

.login-button i {
    margin-right: 0.5rem;
}

.login-links {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
}

.login-links a {
    color: #ec4899;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.login-links a:hover {
    color: #db2777;
}

.error-message {
    background-color: #fee2e2;
    color: #b91c1c;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

/* Responsive styles */
@media (max-width: 640px) {
    .login-card {
        padding: 1.5rem;
    }
    
    .login-title {
        font-size: 1.25rem;
    }
    
    .login-logo {
        height: 3rem;
    }
}