
h1 {
    text-align: center;
}

form {
    margin: 0 auto;
    max-width: 400px;
    padding: 20px;
    border: 1px solid #9C8B7E;
    border-radius: 15px;
    text-align: center;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    color: #555;
}

button[type="submit"] {
    background-color: #555;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #9C8B7E;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #555;
    outline: none;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder {
    color: #999;
}

form a {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    color: #9C8B7E;
    text-decoration: none;
}

form a:hover {
    text-decoration: underline;
    color: #555;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%; /* Align to the middle of the input field */
    transform: translateY(50%); /* Adjust to center */
    cursor: pointer;
    font-size: 16px;
    color: #555;
}

.form-group {
    position: relative; /* Needed to position the eye icon correctly */
    margin-bottom: 20px;
}

.message {
    max-width: 400px;
    margin: 0 auto;
    font-size: 14px;
    text-align: center;
    padding: 8px;
    border-radius: 4px;
    background-color: #555;
    color: #fff;
    display: none; /* Hide initially */
}