body {
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: 100%;
}

.containers {
    width: 500px;
    height: 500px;
    text-align: center;
    margin: 0 auto;
    background-color: rgba(29, 29, 29, 0.7);
    margin-top: 160px;
    border-radius: 20px;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.9);
}

.containers img {
    width: 280px;
    height: 280px;
    margin-top: -160px;
}


/* 
input[type="email"],
input[type="password"] {
    margin-top: 30px;
    height: 45px;
    width: 300px;
    font-size: 18px;
    margin-bottom: 20px;
    background-color: #fff;
    padding-left: 40px;
    border-radius: 12px;
} */


/* .form-input::before {
    content: "\f007";
    font-family: "FontAwesome";
    padding-left: 07px;
    padding-top: 40px;
    position: absolute;
    font-size: 35px;
    color: #f05c06;
} */


/* .form-input:nth-child(2)::before {
    content: "\f023";
} */


/* .btn-login {
    padding: 15px 25px;
    border: none;
    background-color: #27ae60;
    color: #fff;
    font-weight: bold;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    border-radius: 12px;
} */

.login {
    width: 400px;
    margin: 0px auto;
}

.login h1 {
    text-align: center;
    color: #5b6574;
    font-size: 24px;
    padding: 20px 0 20px 0;
    border-bottom: 1px solid #dee0e4;
}

.login form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 0px;
}

.login form label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #f05c06;
    color: #ffffff;
    border-radius: 2px;
}

.login form input[type="password"],
.login form input[type="text"] {
    width: 310px;
    height: 50px;
    border: 0px solid #dee0e4;
    margin-bottom: 20px;
    padding: 0 15px;
    border-radius: 2px;
}

.login form input[type="submit"] {
    width: 90%;
    padding: 15px;
    margin-top: 20px;
    border-radius: 12px;
    background-color: #f05c06;
    border: 0;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.2s;
}

.login form input[type="submit"]:hover {
    background-color: #53e211;
    transition: background-color 0.2s;
}