.register-form-container {
    width: 100%;
    min-height: 100vh;
    height: 100%;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    transform: translateY(7vh);
    align-items: center;
}

.register-form-container>.form>.form-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 1rem;
    text-align: center;
}



.register-form-container>.form>.field-container {
    display: flex;
    flex-direction: column;
    margin: 1rem;
    max-width: 80vw;
}

.register-form-container>.form>.field-container>input {
    /* margin: 0.5rem; */
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.register-form-container>.form>.field-container>input:focus {
    border: 1px solid #000;
}

.register-form-container>.form>.submit-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-form-container>.form>.submit-button>button {
    margin: 1rem;
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    background-color: #000;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
}