@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');



body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7fc;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    box-sizing: border-box;
}

h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
    text-align: left;
}

input[type="text"], 
input[type="email"], 
input[type="password"], 
input[type="date"], 
input[type="number"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #3b82f6;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2563eb;
}

.error-message {
    color: #e74c3c;
    margin-bottom: 10px;
}

.extra-links {
    margin-top: 20px;
    font-size: 14px;
}

.extra-links a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.extra-links a:hover {
    text-decoration: underline;
}

@media (max-width: 400px) {
    .login-container {
        padding: 20px;
    }

    h2 {
        font-size: 22px;
    }

    button {
        font-size: 14px;
    }
}

.signed-in-container {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.login-container img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.signed-in-container h2 {
    margin-bottom: 10px;
    font-size: 22px;
    color: #333;
}

.signed-in-container p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.action-buttons .button {
    padding: 10px 20px;
    border-radius: 6px;
    background-color: #3b82f6;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.action-buttons .button.logout {
    background-color: #e74c3c;
}

.action-buttons .button:hover {
    background-color: #2563eb;
}

.action-buttons .button.logout:hover {
    background-color: #c0392b;
}

.success-message {
    color: #27ae60;
    margin-bottom: 10px;
    font-size: 14px;
}

.error-message {
    color: #e74c3c;
    margin-bottom: 10px;
    font-size: 14px;
}