* {
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(45deg, rgb(255, 255, 255), rgb(255, 233, 218));
}

.main {
    /* Box sizing */
    width: 75%;  
    max-width: 300px;
    margin-top: 20px;
    margin-bottom: 20px;
    
    border-radius: 10px;
    /*box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.5);*/
    display: flex;
    align-items: center;
    flex-direction: column;
}

.auth {  /*Sizing the box to fit the .main box*/
    width: 100%;
}

.error-message {
    color: red;
    text-align: center;
}

.backButton { 
    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: 1rem;
    left: 2rem;

    width: 48px;
    height: 48px;
}

input {
    height: 2rem;
    padding-left: 0.75rem;

    border: 1px rgb(35, 35, 35) solid;
    border-radius: 35px;

    width: 100%;
}


.inputField {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}


.inputField > .radioButton {
    margin-bottom: 7px;
}

.radioButtonDescription > p {
    margin-bottom: 5px;
}

button {
    background: linear-gradient(45deg, rgb(257, 161, 91), rgb(250, 90, 95));
    border-radius: 15px;
    border: none;
    color: white;
    font-size: 1rem;

    height: 1.75rem;
    padding: 0 0.75rem;
    width: 100%;
}

.buttonDiv {
    display: flex;
    justify-content: center;
}

a {
    color: black;
    text-decoration: none;
}

.imageInput {
    border: none
}

.elementHide {
    display: none;
}

textarea {
    border: 1px rgb(35, 35, 35) solid;

}