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

body {
    background-color: #e3dede;
}

#container {
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

#container form {
    width: 350px;
    box-shadow: 2px 6px 8px #747474;
    padding: 25px;
    border-radius: 5px;
    position: absolute;
    top: 200px;
    background-color: #fdfdfd;
}

form {
    width: 300px;
    box-shadow: 2px 6px 8px #747474;
    padding: 10px 10px 18px 10px;
    border-radius: 5px;
    position: absolute;
    top: 200px;
    background-color: #fff;
}

form .col {
    margin-top: 10px;
}

form h2 {
    text-align: center;
}

form img {
    height: 150px;
    width: 100%;
}

.btn-primary {
    background-color: #eb4034;
    border: #a6251c;
}

.btn-primary:hover {
    background-color: #ba2c22;
}


.btn-primary:disabled {
    background-color: #ba2c22;
}
