main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-container {
    width: 90%;
    height: fit-content;
    margin: 80px 0;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: 1050;
    border-radius: 30px;
    border: 5px solid #00ADB5;
}

.register-container-title {
    float: left;
    color: #222831;
    margin: 0;
    width: 100%;
    height: 120px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.register-container-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

#registerForm {
    width: 100%;
    height: calc(100% - 100px);
}

.registerForm-left {
    float: left;
    width: 50%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.registerForm-right {
    float: right;
    width: 50%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-grow: 1;
}

.registerForm-group {
    float: left;
    width: 60%;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    flex-grow: 1;
}

.registerForm-group label {
    color: #222831;
    font-size: 1.2rem;
    font-weight: 600;
}

.registerForm-control {
    width: 100%;
    height: 10px;
    padding: 10px;
    border: 3px solid #00ADB5;
    border-radius: 5px;
    font-size: 1.2rem;
}

.registerForm-error {
    color: red;
    font-style: italic;
}

.registerForm-send {
    width: 100%;
    float: left;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.registerForm-send button {
    width: 165px;
    height: 100%;
    background-color: #00ADB5;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.registerForm-send button:hover {
    background-color: #222831;
}

@media (max-width: 720px) { /* MOBILE */
    .register-container {
        width: 100%;
        margin: 60px 0;
        z-index: 1;
        border-radius: 0;
        border: none;
    }

    .registerForm-left {
        width: 100%;
    }
    
    .registerForm-right {
        width: 100%;
    }
}