* {
    margin: 0;
    padding: 0;
}

main {
    max-width: 1800px;
    width: 100%;
    margin-left: 50%;
    transform: translateX(-50%);
}

.background {
    position: relative;
    width: 100%;
    background: url(../../images/butterfly-beach.jpg);
    background-size: cover;
    background-position: calc(50%) calc(50% - 100px);
    height: calc(100vh - 190px);
    max-height: 800px;
    overflow: hidden;
}

.background .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
    z-index: 1;
    max-height: 900px;
}

.signin-form {
    position: relative;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 75px;
    min-width: 260px;
    max-width: 500px;
    margin-bottom: 50px;
    width: 90%;
    background: #fff;
    border-radius: 10px;
    z-index: 2;
}

.signin-form h2 {
    position: relative;
    display: inline-block;
    margin-top: 25px;
    margin-left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
    font-size: 36px;
    font-family: trajan-pro-3, serif;
    font-weight: 400;
    font-style: normal;
    font-display: swap !important;
}

.signin-form p {
    position: relative;
    display: inline-block;
    margin-top: -5px;
    margin-left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
    font-size: 15px;
    font-family: trajan-pro-3, serif;
    font-weight: 400;
    font-style: normal;
    font-display: swap !important;
}

.break {
    transform: translateX(-50%);
    margin-left: 50%;
    margin-top: 10px;
    width: 50px;
    height: 4px;
    background: #000;
}

form {
    margin-top: 25px;
}

form input {
    margin-bottom: 20px;
    outline: 1px solid #a1a1a1;
    border: none;
    border-radius: 5px;
    padding-left: 15px;
    height: 40px;
    margin-left: 50%;
    transform: translateX(-50%);
    width: calc(80% - 15px);
    max-width: 450px;
    font-size: 15px;
    font-family: trajan-pro-3, serif;
    font-weight: 400;
    font-style: normal;
}

form button {
    height: 40px;
    width: 200px;
    margin-left: 50%;
    transform: translateX(-50%);
    border: 2px solid #dfc16d;
    background: #dfc16d;
    border-radius: 5px;
    font-size: 15px;
    font-family: trajan-pro-3, serif;
    font-weight: 400;
    font-style: normal;
    cursor: pointer;
}

form button:hover {
    background: transparent;
}

.signin-form ul {
    position: relative;
    margin-left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    list-style: none;
}

.signin-form ul li {
    text-align: center;
    font-size: 15px;
    font-family: trajan-pro-3, serif;
    font-weight: 400;
    font-style: normal;
    font-display: swap !important;
    white-space: nowrap;
    margin-top: 20px;
    margin-bottom: 15px;
    margin-left: 12.5px;
    margin-right: 12.5px;
}

.signin-form ul li a {
    color: #000;
    text-decoration: none;
}

.signin-form ul li a:hover {
    color: #dfc16d;
    text-decoration: underline;
}

.signin-form .not-a-member {
    padding-bottom: 25px;
}

.signin-form p a {
    color: #000;
    text-decoration: none;
    
}

.signin-form p a:hover {
    color: #dfc16d;
    text-decoration: underline;
}

small {
    position: relative;
    display: none;
    margin-top: 15px;
    margin-left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
    font-size: 15px;
    font-family: trajan-pro-3, serif;
    font-weight: 400;
    font-style: normal;
    font-display: swap !important;
    color: red;
}

@media screen and (max-width: 1000px) {
    .background {
        margin-top: 90px;
        height: calc(100vh - 90px);
    }
}

@media screen and (max-width: 550px) {
    .signin-form h2 {
        font-size: 24px;
    }
    
    .signin-form p {
        font-size: 12px;
        font-weight: 300;
    }
    
    form input {
        font-size: 12px;
    }
    
    form button {
        font-size: 12px;
    }
    
    .signin-form ul li {
        font-size: 12px;
        margin-left: 7.5px;
        margin-right: 7.5px;
    }
}