.frontpage {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85vh;
    width: 100vw;
    background: #F47151;
    background: linear-gradient(135deg,rgba(244, 113, 81, 1) 0%, rgba(250, 108, 70, 1) 50%, rgba(244, 113, 81, 1) 100%);
}

.login-page {
    display: flex;
    height: 60vh;
    width: 50vw;
    padding: 15px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 12px 0px #0000001c;
    box-shadow: 2px 4px 12px rgba(75, 72, 72, 0.562);
}

.login-box {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 50%;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-color: #f1f1f1;
    border-radius: 10px;
}

.login-header {
    font-family: "Noto Sans", sans-serif;
    margin: 0px;
}

.signup-box {
    display: flex;
    flex-direction: column;
    padding: 15px;
    row-gap: 20px;
    width: 50%;
    justify-content: center;
    align-items: center;
}

.signup-row {
    display: flex;
    width: 80%;
    flex-direction: row;
    column-gap: 15px;
    justify-content: center;
    align-items: center;
}

.input-box {
    display: flex;
    padding: 10px;
    color: grey;
    border: 1px solid black;
    border-radius: 4px;
}

.login-button {
    display: flex;
    padding: 10px 5vw 10px 5vw;
    border: 0px;
    border-radius: 1000px;
    background-color: #F47151;
}

.signup-button {
    display: flex;
}