@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

.container {
    display: flex;
    height: 100dvh;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.input-field {
    width: 100%;
    max-width: 20eem;

    display: flex;
    flex-direction: column;
}
#submitButton {
    font-weight: 600;
}
.center {
    max-width: 29em;
    width: 100%;
    padding: 2em;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 1em;
}

.backLogin {
    font-size: 0.9em;
    text-decoration: none;
    text-align: center;
    color: #000000;
    font-weight: 600;
    display: inline-block;
    margin-top: 1.2em;
    transition: color 0.2s ease;
}

.backLogin:hover {
    color: rgb(160, 160, 160);
}

input {
    padding: 10px;
    font-size: 1rem;
    /* border-radius: 10px; */
    border: 0.5px solid #000000;
    border-top: none;
    border-left: none;
    border-right: none;
    &:focus {
        outline: none;
        background-color: rgb(247, 247, 247);
        border-bottom: #000000 solid 2px;
    }
}
header {
    width: 100%;
    background-color: #5a91ff;
    height: 60px;
}
button {
    margin-top: 2em;
    padding: 0.7em 0.2em;
    border-radius: 0.4em;
    border: none;
    color: white;
    font-weight: 600;
    background-color: #005cff;
    transition: color 0.2s ease;
    &:hover {
        background-color: #5a91ff;
    }
}

h3 {
    font-size: 1.5em;
    /* text-align: center; */
    margin-bottom: 0.5em;
}
.subheading {
    margin-bottom: 2em;
    /* text-align: center; */
    font-size: 0.9em;
    color: #000000b3;
}
