@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300&display=swap");
.main,
html,
body {
    margin: 0;
    font-family: "Nunito", sans-serif;
}

.main {
    width: 100%;
    height: 100%;
}

.form {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #2f2e41;
    width: 70%;
    height: 90%;
    margin: auto;
    margin-top: 60px;
}

.left {
    background-color: rgba(66, 122, 161, 0.18);
    width: 40%;
    height: 100%;
}

.left img {
    margin-left: 50px;
}

.right {
    height: 100%;
    width: 60%;
}

.right-body div {
    margin-left: 30px;
}

.right_header h1 {
    font-size: 30px;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"] {
    width: 60%;
    padding: 10px 20px;
    margin: 15px;
    margin-left: 0;
    display: inline-block;
    border: 1px solid rgba(200, 210, 217, 1);
    box-sizing: border-box;
    border-radius: 12px;
    outline: none;
}

select {
    width: 60%;
    padding: 10px 20px;
    outline: none;
    border: 1px solid rgba(200, 210, 217, 1);
    border-radius: 12px;
    background-color: inherit;
}

#users {
    width: 50%;
    height: 30px;
    margin-left: 20px;
}

h1 {
    font-family: "Nunito", sans-serif;
    text-align: center;
    font-size: 1rem;
    color: #2f2e41;
}

label {
    font-size: 20px;
    color: #2f2e41;
    font-weight: 700;
}

.text {
    font-size: 30px;
}

.button {
    margin: auto;
}

#btn-form {
    background-color: #6cb840;
    color: white;
    padding: 14px 20px;
    margin-left: 30px;
    border: none;
    cursor: pointer;
    width: 30%;
    align-content: center;
    border-radius: 12px;
}

.right-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
}