@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro&display=swap');


body {
    background-image: url("../img/bg-image.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

.nav-container .logo img {
    margin-left: 5rem;
    margin-top: 1rem;
}

.main-container {
    display: grid;
    place-items: center;
    width: 100%;
    margin-top: 3rem;
}

.main-title {
    width: 40rem;
    font-size: 4rem;
    font-weight: bold;
    font-family: 'Be Vietnam Pro', sans-serif;
    color: #FFFFFF;
    text-align: center;
}

.main-subtitle {
    margin-top: 1rem;
    width: 40rem;
    font-size: 2rem;
    font-family: 'Be Vietnam Pro', sans-serif;
    color: #FFFFFF;
    text-align: center;
}

.form-container {
    margin-top: 5rem;
    width: 50rem;
    background-color: #8953C5;
    border-radius: 1.2rem;
    margin-bottom:3rem;
}

form {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem;
}

.form-50 {
    display: grid;
    width: 50%;
}

.form-50 label {
    color: white;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: .7rem;
}

.form-50 input {
    margin-top: .3rem;
    margin-left: .3rem;
    margin-right: .3rem;
    margin-bottom: 1rem;
    height: 4rem;
    border-radius: .7rem;
    border: none;
    padding-left: 1rem;
    font-family: 'Be Vietnam Pro', sans-serif;
    color: #111729;
    font-weight: bold;
}

.form-50 select{
    margin-top: .3rem;
    margin-left: .3rem;
    margin-right: .3rem;
    margin-bottom: 1rem;
    height: 4.3rem;
    border-radius: .7rem;
    border: none;
    padding-left: 1rem;
    font-family: 'Be Vietnam Pro', sans-serif;
    color: #111729;
    font-weight: bold;
}

.form-50:focus{
        outline: none;
        border: none;
}


.form-100 {
    display: grid;
    width: 100%;
}

.form-100 label {
    color: white;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: .7rem;
}

.form-100 textarea {
    margin-top: .3rem;
    margin-left: .3rem;
    margin-right: .3rem;
    margin-bottom: 1rem;
    height: 9rem;
    border-radius: .7rem;
    border: none;
    padding-top: -3rem;
    font-family: 'Be Vietnam Pro', sans-serif;
    color: #111729;
    font-weight: bold;
    padding: 1rem;
}

.form-button-submit{
    color: #ffffff;
    height: 2.8rem;
    border-radius: .7rem;
    border: none;
    outline: none;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: bold;
}