@import url("https://fonts.googleapis.com/css2?family=Cinzel&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap");

* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}
.img-responsive {
    width: 100%;
    height: auto;
}

.wrapper {
    background: url(Layer-2.jpg) no-repeat center;
    height: 100vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login {
    width: 25%;
    text-align: center;
}
.login .logo {
    max-width: 250px;
    margin: 0 auto 20px;
}
.login .title span {
    font-family: "Cinzel", serif;
    font-size: 32px;
    color: #c3a360;
    margin: 0 0 15px;
    display: block;
}
.login .title p {
    margin: 0 0 30px;
    font-size: 14px;
}
.login .form input {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 1px solid #bfbeb9;
    margin: 0 0 15px;
    box-sizing: border-box;
}
.login .form .button {
    text-align: right;
}
.login .form .button input {
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    background-color: #c3a360;
    padding: 10px 40px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    width: auto;
}
.login .backtohome {
    color: #000;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: underline;
    display: inline-block;
    margin: 80px 0 0;
}
