.create-account-root {
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: var(--bg-color);
    overflow: hidden;
}

.create-account-back-button{
    width: 25%;
    min-width: 340px;
    height: 3%;

    color:blue;

    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;

    margin:10px;
}

.create-account-back-button:hover{
    cursor:pointer;
}

.create-account-panel {
    width: 25%;
    min-width: 340px;
    height: 60%;
    min-height: 480px;

    background-color: var(--fg-color);
    border-radius: 20px;

    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-shadow: 0 0 15px 3px rgb(206, 206, 206);
}

.create-account-logo-container{
    width:65px;
    height:65px;

    background: linear-gradient(to bottom right,rgb(68, 185, 113),rgb(92, 85, 189));

    color:white;

    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;

    border-radius: 50%;
    margin-bottom:10px;
}

.create-account-title-element{
    height:10%;
    width:80%;

    color:Black;

    text-align: center;

    font-size:25px;
    font-weight: bold;
}

.create-account-description-element{
    height:10%;
    width:80%;

    color:Black;

    text-align: center;

    font-size:16px;
    font-weight: medium;
}

.form-label{
    width:80%;
    height:4%;

    font-size:16px;
    font-weight:bold;
}

.form-input{
    width:80%;
    height:10%;

    padding:3px;
    border-style:solid;
    border-width:2px;
    border-color: lightgrey;
    border-radius:5px;

    font-size:16px;
    font-weight:bold;
}

.create-account-submit{
    height:10%;
    width:80%;

    color:white;
    background: linear-gradient(to right,rgb(68, 185, 113),rgb(92, 85, 189));

    display:flex;
    flex-direction: row;
    align-items:center;
    justify-content:center;

    border-radius:10px;
    font-size:16px;
    font-weight: bold;

    margin:25px;
}