* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body.login-page {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #E2F9EE; /* Light mint background */
}

.login-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.logo-circle {
    background-color: #00A643; /* The green from your image */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.logo-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00A643; /* Your green background */
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* This targets the Font Awesome icon specifically */
.logo-circle i {
    color: #FFFFFF !important;
    font-size: 30px;
}

h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 8px;
}

.subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.input-group {
    text-align: left;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.input-group input:focus {
    border-color: #00A643;
}

.login-btn {
    width: 100%;
    background-color: #00A643;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.login-btn:hover {
    background-color: #008f39;
}

.error-msg {
    color: #d9534f;
    background: #fdf7f7;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 13px;
}
