body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    background-color: #f8f9fa;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
    color: #0d6efd;
}

.go-to-website {
    background-color: #574A68;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
}

.top-buttons {
    margin: 20px 0;
    text-align: right;
}

.auth-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.auth-form {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.form-toggle {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
}

.form-toggle a {
    color: #574A68;
    text-decoration: none;
    font-size: 14px;
}

.form-toggle a:hover {
    text-decoration: underline;
}

.form-toggle a.current {
    color: #333;
    font-weight: 500;
    text-decoration: none;
    cursor: default;
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
}

/* Custom submit button styles */
.btn-submit {
    background-color: #574A68;
    /* Green background */
    color: white;
    border: none;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #574A68;
    /* Darker green on hover */
    color: white;
}

.alert-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 300px;
}

/* Style for the important note */
.important-note {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
}

.important-note i {
    color: #ff9800;
    margin-right: 8px;
}

.info, .stats {
    font-size: 18px;
    margin-bottom: 15px;
}

.hidden{
    display: none;
}

.required_option{
    color: red;
}