@import url("https://fonts.googleapis.com/css2?family=Bangers&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: sans-serif;
    background: #e41b13;
    color: white;
}
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100vh;
    z-index: 5;
}
.background-image .background {
    width: 100%;
    height: 100vh;
    background-image: url("../images/bg_sm-mHbWIMD.png");
    background-size: cover;
}
@media (max-width: 600px) {
    .background-image {
        width: 100%;
    }
    .background-image .background {
        background-position: center;
    }
}
.main-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: end;
    padding: 0;
    z-index: 10;
}
.main-container .logo {
    width: 250px;
    margin: 2rem auto;
    display: flex;
}
.main-container .form-container {
    padding: 2rem 1rem;
    width: 100%;
    max-width: 50%;
    background: #2e1b19;
    border-radius: 0px;
    z-index: 6;
}
@media (max-width: 600px) {
    .main-container .form-container {
        width: 100%;
        max-width: 100%;
        backdrop-filter: blur(10px);
        background: rgb(46 27 25 / 80%);
    }
}
.main-container .form-header {
    padding: 2rem 1rem;
    width: 100%;
    max-width: 450px;
    background: #821515;
}
.main-container .form-container .form-group {
    margin-bottom: 7px;
}
.main-container .title {
    font-family: "Bangers", cursive;
    letter-spacing: 2px;
}
.main-container .title span {
    color: #d6001c;
}

.terms-conditions {
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.terms-conditions .terms-content {
    background: rgba(20, 20, 20, 0.85);
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #d6001c;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 0 20px rgba(214, 0, 28, 0.3);
}
.terms-conditions.close {
    display: none;
}

.btn-custom {
    background: #d6001c;
    color: white;
    border: none;
    padding: 10px 20px;
    font-family: "Bangers", cursive;
    font-size: 1.2rem;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 500ms ease-in;
}

@media (max-width: 600px) {
    .terms-conditions .terms-content {
        width: 100%;
        height: 100vh;
        border: none !important;
        border-radius: 0 !important;
        min-height: 100vh;
    }
    .terms-conditions .btn-custom {
        margin-bottom: 5rem;
    }
}

.form-group label {
    color: whitesmoke;
}
.form-group .form-control {
    border-radius: 0;
    border-color: transparent;
    padding: 8px;
    background: #8d706d;
    color: #ffff !important;
}
.form-group .form-control:focus {
    background: inherit;
    color: initial;
    outline: none;
    background: #8d706d;
    border-color: transparent;
}
.form-group .form-control:focus-visible {
    outline: none;
    box-shadow: none;
    border-color: transparent;
    background: #8d706d;
}

.login-container {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    color: black;
}
@media (max-width: 600px) {
    .login-container {
        min-height: 100vh;
    }
}
.login-container .form-content {
    position: relative;
    padding: 4rem 2rem;
    background-color: #ffff;
    border-radius: 7px;
    margin: 3rem auto;
    width: 100%;
    max-width: 450px;
    padding: 30px;
}
@media (max-width: 600px) {
    .login-container .form-content {
        margin: 0 auto;
        border-radius: 0;
        min-height: 100%;
    }
}
.login-container .form-content img {
    display: flex;
    margin: 0 auto 15px auto;
}

.btn-custom-red {
    color: #ffff;
    background: #d6001c;
    width: 100%;
}

.btn-custom-red:focus,
.btn-custom-red:active,
.btn-custom-red:hover {
    background: #b32a3c;
    border-color: #d6001c;
    color: #ffff;
}
