/* signup.css */

/* Style the main heading */
h1 {
    font-size: 2.5rem;
    color: #064737; /* Matches the Monetty theme color */
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-weight: bold;
}

/* Style the paragraph */
p {
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

/* Style the form container */
form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    background-color: #f9f9f9;
}

/* Style the input fields */
input[type="text"], input[type="email"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

/* Style the button */
button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #064737;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.2rem;
    cursor: pointer;
}

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

/* Additional styles for responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    form {
        padding: 1.5rem;
    }
}
