
body {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}


.form-group p {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 0.7rem;
}

.form-group input {
    width: 20rem;
    height: 3rem;
    border-radius: 20px;
    font-size: 20px;
    padding: 0px 12px;
    font-size: 14px;
    background-color: #959595;
}

button {
    width: 10rem;
    height: 2.5rem;
    background-color: #FF4A4A;
    border-radius: 8px;
    font-size: 16px;
    color: #fff;
    margin-top: 1rem;
}
