@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.auth-container {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.auth-header h1 {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #4a5568;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
}

.form-group input::placeholder {
    color: #a0aec0;
}

.required-star {
    color: #e53e3e; /* Red color for the star */
    margin-left: 2px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 4px;
    background-color: #3182ce;
    color: white;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #2b6cb0;
}

.auth-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.auth-footer p {
    color: #718096;
    font-size: 0.9em;
}

.auth-footer a {
    color: #3182ce;
    font-weight: 500;
    text-decoration: none;
}