/* Register page styles */
.register-form {
    background-color: white;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 500px;
    margin: 0 auto;
}

.register-form h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

.register-form label {
    display: block;
    font-size: 1.1rem;
    margin: 10px 0 5px;
}

.register-form button {
    padding: 10px 20px;
    font-size: 1.1rem;
    background-color: #1ABC9C; /* Teal button */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.register-form button:hover {
    background-color: #16A085; /* Slightly darker teal */
}

.register-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.register-form input[type="submit"] {
    background-color: #1ABC9C;
    color: white;
    border: none;
    cursor: pointer;
}

.register-form input[type="submit"]:hover {
    background-color: #16A085;
}

.register-form p {
    text-align: center;
    font-size: 1rem;
}

.register-form a {
    color: #1ABC9C;
    text-decoration: none;
}

@media (max-width: 768px) {
    .register-form {
        padding: 20px;
        margin: 10px;
    }
}
