/* styles.css */
body {
    background-color: #F4F1EA;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}
h1 {
    color: #556B5D;
    font-weight: bold;
    font-family: "Instrument Serif", serif;
    text-align: center; 
}
/* don't need this, but it's good formating for future use */
h2 {
    color: #232826;
    font-family: "instrument Serif", serif;
    text-align: center; 
}
form {
    display: flex;
    flex-direction: column;

    width: 300px;
    padding: 30px;

    background-color: white;
    border-radius: 12px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.1);

    color: #232826;
    font-family: "instrument Serif", serif;
    text-align: center; 
}
label {
    margin-top: 10px;
    margin-bottom: 5px;

    color: #232826;
}
button {
    margin-top: 20px;
    padding: 10px;

    background-color: #556B5D;
    color: white;

    border: none;
    border-radius: 6px;

    cursor: pointer;
    font-size: 16px;
}
button:hover {
    background-color: #44574B;
}
.signup-link {
    display: block;
    margin-top: 20px;

    text-align: center;
    font-family: 'Inter', sans-serif;

    color: #556B5D;
    text-decoration: none;
}