@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300&display=swap");
html,
body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}


/* The Modal (background) */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.5);
    /* Black w/ opacity */
}


/* Modal Content */

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 100%;
    height: 100%;
    max-width: 60rem;
    max-height: 33rem;
    overflow: hidden;
    border-radius: 2px;
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    font-family: "Nunito", sans-serif;
    background: #fff;
    -webkit-box-shadow: 0px 0px 19px 3px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 0px 19px 3px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 19px 3px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-content-left,
.modal-content-right {
    flex: 0 1 auto;
}

.modal-content-left {
    flex: 2;
}

.modal-content-left img {
    width: 40rem;
    max-width: 95%;
    margin: 0;
    padding: 0;
    display: block;
    border-radius: 2px;
}

.modal-content-right {
    flex: 2;
    max-width: 100%;
    padding: 1rem 3rem;
}


/* Add Animation */

@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }
    to {
        top: 0;
        opacity: 1;
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }
    to {
        top: 0;
        opacity: 1;
    }
}


/* The Close Button */

.close,
.close-imp {
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    padding: 0 1rem;
    border-radius: 2px;
    transition: 0.4s ease-out;
}

.close:hover,
.close:focus,
.close-imp:hover,
.close-imp:focus {
    color: #111;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    font-family: "Nunito", sans-serif;
    font-size: 3.5rem;
    margin: 0;
    padding: 0;
}

.modal-header p {
    margin: 0;
    padding: 0;
}

.modal-header,
.modal-body,
.modal-footer {
    padding: 0.5rem 3rem;
}

.modal-header {
    padding-top: 1rem;
}

.modal-footer {
    padding-bottom: 2rem;
}

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

.container {
    width: 100%;
}


/* The Button */

input[type=text],
input[type=password] {
    width: 100%;
    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;
}

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

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

.text {
    font-size: 30px;
}

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