*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-image: url('img/background.png');
    background-size: cover;
}

.main-container{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 310px;
    height: 400px;
    gap: 8px;
    margin-bottom: 320px;
}

.logo-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: rgb(242, 242, 242);
    padding: 3px;
    border: solid 1px rgb(204, 204, 204);
    border-radius: 6px;
}

.form-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: rgb(242, 242, 242);
    padding: 24px 6px;
    border: solid 1px rgb(204, 204, 204);
    border-radius: 6px;
}

form{
    width: 94%;
    border: solid 1px rgb(204, 204, 204);
    border-radius: 6px;
    background-color: white;
}

form h2{
    margin-bottom: 16px;
    margin-left: 15px;
    margin-top: 5px;
    color: rgb(68, 68, 68);
}

.inputs-container{
    width: 90%;
    margin: 0 auto;
}

.input-container{
    position: relative;
    width: 100%;
}

.input-container img{
    position: absolute;
    left: 6px;
    top: 15px;
}

form input{
    width: 100%;
    background-color: white;
    padding: 15px 6px;
    border: solid 1px rgb(204, 204, 204);
    border-radius: 6px;
    font-size: 12px;
    padding-left: 24px;
}

form input:focus{
    outline: none;
}

form input::before{
    content: url('img/login.png');
}

input[type="email"]{
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

input[type="password"]{
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

form button{
    width: 100%;
    background-color: #5BB75B;
    background-image: -webkit-linear-gradient(top, #3fb04a, #3c9b3b);
    border: 1px solid #347f32;;
    outline: none;
    cursor: pointer;
    border-radius: 6px;;
    color: white;
    padding: 12px;
    margin-top: 12px;
    margin-bottom: 8px;
    font-size: 15px;
}