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

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

/* White background for the body */
body {
    min-height: 100vh;
    background: #f7f7f7; /* Light grey/white background */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #333; /* Dark text */
}

.container {
    width: 100%;
    max-width: 440px;
    background: #ffffff; /* White container */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 50px 40px;
    border: 1px solid #ddd; /* Light border */
    transition: transform 0.3s ease;
}

.container:hover {
    transform: translateY(-5px);
}

h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #007bff; /* Primary blue color for heading */
    letter-spacing: 1px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #ccc; /* Light border for inputs */
    background: #fff;
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: #007bff; /* Blue border on focus */
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

input::placeholder {
    color: #888;
}

/* Checkbox specific styles */
.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.checkbox-group label {
    font-size: 15px;
    color: #555;
}

/* Blue button styles */
button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(90deg, #007bff, #0056b3); /* Blue gradient */
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.4);
    background: linear-gradient(90deg, #0056b3, #007bff);
}

.message {
    text-align: center;
    margin-top: 30px;
    font-size: 15px;
}

.message a {
    color: #007bff; /* Blue link color */
    text-decoration: none;
    font-weight: 500;
}

.message a:hover {
    text-decoration: underline;
}

.error {
    color: #dc3545; /* Red for error */
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.success {
    color: #28a745; /* Green for success */
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
}