body {
        position: relative;
        background:url('../images/dark-bg.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        padding: 60px 0 ;
        font-family: "Roboto Condensed", sans-serif;

    }
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.sub-heading h2 {
    color: #e6be3c;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: bold;
}
.card {
    background: #000000;
    border-radius: 15px;
    background-position: center;
    box-shadow: 0px 0px 10px #d7af2d;
    border: 1px solid #353535 !important;
}
.head_top h1 {
    font-size: 37px;
    font-weight: bolder;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 1px;
    font-family: "Libertinus Math", system-ui;
}
.head_top h6 {
    font-size: 22px;
    font-family: "Libertinus Math", system-ui;
    position: relative;
}
.head_top h6::before {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #5b626b;
    bottom: -6px;
    margin: auto;
    border-radius: 50%;
}
.head_top p {
    font-size: 17px;
    margin-top: 20px;
}
.head_top span {
    color: #000;
}
.brand_logo{
    text-align: center;
}
.brand_logo img {
    max-width: 120px;
}
form-control .eyebx {
    position: relative;
}
.head_top h2 {
    font-size: 22px;
    color: #000;
    text-transform: capitalize;
    font-weight: bolder;
    letter-spacing: 1px;
    padding-bottom: 20px;
    margin: 0px;
    font-family: "Libertinus Math", system-ui;
}
.form-control {
    background: #ffffff00 !important;
    border-color: #646464;
    color: #ffffff;
}
.form-control::placeholder{
    color: #ffffff;
    font-size: 12px;
}



.custom_btn  {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        #000000 0%,
        #1a1a1a 30%,
        #D4AF37 70%,
        #F5D76E 100%
    );
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
    width: 100%;
}

.custom_btn:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.55);
}
.text-orange {
    color: #000;
    font-weight: 800;
}
.login-card {
    /* background: linear-gradient(90deg,rgba(153,188,237,.2),rgba(153,248,207,.3),rgba(255,214,199,.3)); */
    border-radius: 15px;
    padding: 30px 15px;
}
.btn-group{
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
@media screen and (max-width:575px){
    .head_top h1 {
        font-size: 36px;
    }
    .head_top span {
        display: block;
    }
    .head_top h2 {
        font-size: 18px;
    }
}