.card {
    margin-bottom: 20px;
    border: none;
    background: none;
}


.box {
    max-width: 500px;
    padding: 40px;
    /* position: absolute;
    top: 50%;
    left: 50%; */
    background: #D9C2A7;
    text-align: center;
    transition: 0.25s;
    margin-top: 30px;
    border-radius: 12px;
}

.box input[type="text"],
.box input[type="password"] {
    border: 0;
    background: white;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #402504;
    padding: 10px 10px;
    width: 250px;
    outline: none;
    color: #402504;
    border-radius: 24px;
    transition: 0.25s
}

.box h1 {
    color: #402504;
    text-transform: uppercase;
    font-weight: 500
}

.box input[type="text"]:focus,
.box input[type="password"]:focus {
    width: 300px;
    border-color: #6b4b24
}

.box input[type="submit"] {
    border: 0;
    background: #402504;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #402504;
    padding: 14px 40px;
    outline: none;
    color: #F2F2F2;
    border-radius: 24px;
    transition: 0.25s;
    cursor: pointer;
}

.box input[type="submit"]:hover {
    background: #6b4b24;
    border: 2px solid #6b4b24;
}

.forgot {
    text-decoration: none;
}

.forgot:hover {
    color: #6b4b24 !important;
    text-decoration: underline;
}