body{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        /* #ef7853 0%, */
        #ff0000 100%
    );
}

.logo {
    /* width: 150px;      Adjust size */
    display: block;
    margin: 20px auto;
}

h1{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 60px;
    color:#141414;
    margin-top: 150px;
    letter-spacing: 2px;
    position: relative;
}

.DEER{
    text-decoration: underline;
}

.container{
    width: 380px;
    margin: 5% auto;
    text-align: center;
    border-radius: 25px;
    background-color: rgba(233, 233, 233, 0.785);
    box-shadow: 0 0 17px #333;
    border: 1px solid #ccc;
}

.header{
    text-align: center;
    padding-top:  8px;
}

.header h2{
    color: rgb(37, 34, 31);
    font-size: 45px;
    margin-bottom: 80px;
}

.main{
    text-align: center;
}

.main input{
    width: 300px;
    height: 40px;
    /* border: none; */
    outline: none;
    box-sizing: border-box;
    font-size: 15px;
    margin-bottom: 20px;
}

.main button{
    width: 100px;
    height: 40px;
    padding-left: 0;
    /* background-color: #cee789; */
    letter-spacing: 1px;
    font-weight: bold;
    margin-bottom: 70px;
}

.main button:hover{
    box-shadow: 2px 2px 5px #555;
    background-color: antiquewhite;
}

.main input:hover{
    box-shadow: 2px 2px 5px #555;
    background-color: bisque;
}