* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

body {
    background-color: #f9fafb;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-container {
    background-color: #ffffff;
    width: 100%;
    max-width: 400px;
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

h1 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.logo {
    height: 35px;
    width: auto;
    object-fit: contain;
}

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

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

.input-group input[type="email"],
.password-wrapper input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s;
}

.input-group input:focus {
    border-color: #6366f1;
}

.password-wrapper {
    position: relative;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #6366f1;
}

.checkbox-group label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

button[type="submit"] {
    width: 100%;
    background-color: #6366f1;
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

button[type="submit"]:hover {
    background-color: #4f46e5;
}

button[type="submit"]:disabled {
    background-color: #a5b4fc;
    cursor: wait;
}

.error-message {
    color: #dc2626;
    background-color: #fee2e2;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
    display: none;
}
