/* Shared Login/Register Styles */
.flashed-messages {
    margin-top: 20px;
}

.alert {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.password-container {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

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

/* Login/Register Form Styles */
form {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #D1AC8C;
    color: black;
    border-radius: 8px;
}

form h1 {
    text-align: center;
    margin-bottom: 20px;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input[type="text"],
form input[type="password"],
form input[type="email"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.errors {
    color: red;
    margin: 15px 0;
    padding-left: 20px;
}

/* Register-specific Styles */
.register-note {
    color: black;
    border: 2px solid red;
    padding: 10px;
    margin-bottom: 15px;
}

/* Link Styles */
form a {
    color: #863B03;
    text-decoration: underline;
}

form a:hover {
    color: #722B05;
}

/* Responsive Adjustments */
@media (max-width: 500px) {
    form {
        margin: 20px;
        padding: 20px;
    }
}