.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 8px;
    height: 45px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: 0;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.message {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 4px;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
}

.logged-in-section {
    text-align: center;
    padding: 20px;
    background-color: #f0f0f0;
    margin: 20px 0;
}

.user-auth-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-button {
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    color: white;
    font-weight: bold;
}

.login-button {
    background-color: #007bff;
}

.login-button:hover {
    background-color: #0056b3;
}

.register-button {
    background-color: #28a745;
}

.register-button:hover {
    background-color: #218838;
}

.user-initial-circle {
    width: 40px;
    height: 40px;
    background-color: #007bff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

.login_section {
    padding: 60px 0;
    max-width: 520px;
}

.register_section {
    padding: 60px 0;
    max-width: 520px;
}

.register_section button {
    background-color: #28a745;
}

.register_section h1 {
    margin-bottom: 30px;
    font-family: "Josefin Sans", Sans-serif;
}

.login_section h1 {
    margin-bottom: 30px;
    font-family: "Josefin Sans", Sans-serif;
}

.login_section button {
    background-color: #007bff;
}

.logout-dropdown {
    position: absolute;
    top: 45px;
    padding:10px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.logout-button {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #721c24;
    font-weight: bold;
}

.logout-button:hover {
    background-color: #f8d7da;
}


.user-info {
    margin-bottom: 10px;
}

.user-name {
    font-weight: bold;
    margin: 0;
    font-size: 14px;
}

.user-email {
    margin: 5px 0 0;
    font-size: 12px;
    color: #555;
}

.logout-button {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #721c24;
    font-weight: bold;
}

.logout-button:hover {
    background-color: #f8d7da;
}

.logout-icon {
    font-size: 14px;
}