* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', 'Roboto', sans-serif;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
}

label {
    color: #736B02;
    margin-bottom: 20px;
    font-size: .9rem;
}

fieldset {
    border: none;
    width: 100%;
}

.title {
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    margin-bottom: 6rem;
}

.title .form-title {
    font-size: 3rem;
    font-weight: 300;
    color: #736B02;
    text-align: center;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
  
.form {
    width: 100%;
    height: 100%;

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

.form .container-form {
    max-width: 600px;
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
}
  
.input-group {
    height: 70%;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 1rem;
}

.container-inputs {
    width: 100%;
    margin-bottom: 2rem;
}

.form-control {
    width: 100%;
    padding: .8rem .4rem;
    border: 1.5px solid #736B02;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.form-control::placeholder {
    color: #736B02;
}

.forgot-password {
    width: 100%;
    margin-bottom: 1rem;
}

.forgot {
    color: #736B02;
    text-decoration: underline;
}

.btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.btn .btn-sign-in {
    width: 100%;
    font-size: 1rem;
    padding: 1rem .9rem;
    cursor: pointer;
    border: 1px solid #736B02;
    border-radius: 5px; 
    background-color: #fff;
    color: #736B02;
    transition: .2s all ease-in-out;
}

.btn .btn-sign-in:hover {
    transition: .2s all ease-in-out;
    background-color: #5d5601;
    color: #fff;
}

/* Form recuperar contraseña */
.password-title {
    margin-bottom: .5rem;
    text-align: center;
    padding: 0 10px;
}

.btn-previus {
    width: 95%;
    margin-top: 2.2rem;
    margin-bottom: 3rem;
}

.btn-previus .prev {
    background-color: #736B02;
    color: #fff;
    padding: .6rem 1rem;
    border-radius: 5px;
    transition: .2s all ease-in-out;
    display: inline-block;
}

.btn-previus .prev:hover {
    background-color: #4d4803;
    transition: .2s all ease-in-out;
}

.container-recover {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.user {
    width: 100%;
    padding: .8rem .4rem;
    border: 1.5px solid #736B02;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.parthner-id {
    width: 100%;
    padding: .8rem .4rem;
    border: 1.5px solid #736B02;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.description-form-password {
    margin-bottom: 1rem;
    text-align: justify;
    padding: 10px;
}

.btn-recover {
    transition: .2s all ease-in-out;
    border: none;
    border-radius: 8px;
    background: #736B02;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-recover:hover {
    transition: .2s all ease-in-out;
    border: none;
    background: #575202;
    color: #ffffff;
    cursor: pointer;
}

@media screen and (max-width: 800px) {
    .btn-recover {
        padding: .8rem 1rem;
        font-size: .8rem;
    }

    .container-recover {
        width: 95%;
    }
}

@media screen and (max-width: 500px) {
    .title {
        margin-bottom: 4rem;
    }

    .title .form-title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 440px) {
    .form .container-form {
        min-width: 95%;
        max-width: none;
    }
}