@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #ffffff;
}

.container {
    text-align: center;
    background: #ffffff;
    padding: 4em;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 60%;
}

h1 {
    font-weight: 300; /* Montserrat light */
}

input {
    padding: 1em;
    margin: 1.5em 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 80%;
    font-size: 1.2em;
}

input:focus {
    border-color: #2c698d; /* Change border color on focus */
    outline: none; /* Remove the default outline */
    box-shadow: 0 0 5px #2c698d; /* Optional: Add a subtle shadow */
}

button {
    padding: 1em 2em;
    border: none;
    background: #2c698d;
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2em;
}

button:hover {
    background: #1e4c63;
}

p {
    font-size: 1.4em;
    margin-top: 1.5em;
    color: #000000; /* Changed to black */
}
