/* ===== Login Page ===== */
#home-bg {
    background: url("../assets/img/main-bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    width: 100%;
    min-height: 100vh;
}

/* ===== Global form styles ===== */
.form-control::placeholder {
    color: #bdbdbd;
    opacity: 1;
}

a {
    color: #d1552a;
    text-decoration: none;
}

.form-check-input:checked {
    background-color: #b3975a;
    border-color: #b3975a;
}

input:focus, textarea:focus, select:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: inherit !important;
}

/* ===== Login card ===== */
#sign-up-wrapper {
    max-width: 500px;
    margin: 10px;
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 40px;
    padding-left: 30px;
    font-family: Trirong, serif;
    border-radius: 10px;
    border-top: 15px solid #737245;
}

/* ===== Close X button ===== */
#close-x {
    margin-right: -20px;
}

#close-x-bg {
    background: #d1552a;
    border-radius: 5px;
}

#close-x-icon {
    font-size: 20px;
    color: rgb(255,255,255);
    padding: 5px;
    padding-right: 8px;
    padding-left: 8px;
}

/* ===== Login form ===== */
#sign-in-form {
    width: 100%;
}

#sign-in-email-label {
    font-family: Teko, sans-serif;
    font-size: 20px;
    margin-bottom: 0px;
}

#sign-in-email-input {
    border-width: 2px;
    border-radius: 0px;
}

#sign-in-password-label {
    font-family: Teko, sans-serif;
    font-size: 20px;
    margin-bottom: 0px;
    padding-top: 20px;
}

#sign-in-password-input {
    border-width: 2px;
    border-radius: 0px;
}

#forgpt-password {
    font-style: italic;
    padding-top: 20px;
    padding-bottom: 30px;
}

#login-button-wrapper {
    width: 100%;
    height: initial;
    background: #ffffff00;
    border: 2px solid #d1552a;
    border-radius: 5px;
}

#login-button {
    width: 100%;
    font-family: Teko, sans-serif;
    font-size: 20px;
    --bs-body-font-weight: 600;
    color: var(--bs-body-bg);
    text-align: center;
    background: #d1552a;
    border-radius: 5px;
    border: 2px solid var(--bs-white);
}

#login-button:hover {
    background-color: #693727 !important;
}

#logo-signup {
    padding-bottom: 30px;
}

/* ===== Signup pages ===== */
#sign-up {
    background: #faf7f2;
}

#Wrapper {
    background: #faf7f2;
}

.submit-btn {
    text-transform: uppercase;
    background-color: #b3975a !important;
    border-color: #b3975a !important;
    color: #000 !important;
    font-family: Teko, sans-serif;
    font-size: 20px;
}

.submit-btn:hover {
    background-color: #693727 !important;
}

#back-btn:hover {
    background-color: #424242 !important;
}

input:focus.btn.submit-btn {
    border-color: #ffffff !important;
}

#continue-submit:hover {
    background-color: #48472c !important;
}

.agechecker-warning {
    color: #c82333;
    font-weight: 700;
}

.logo-signup img {
    margin-bottom: 30px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    #header-social {
        display: none !important;
    }
}

@media (min-width:768px) and (max-width: 1200px) {
    .center-padding {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (min-width: 1200px) {
    .center-padding {
        padding-left: 200px;
        padding-right: 200px;
    }
}
