﻿
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Numans', sans-serif;
    background-color: #000;
    min-height: 100vh; /* Full screen height */
    display: flex;
    justify-content: center;
    align-items: center;
}
h4 {
    font-size: 1.3rem;
    font-weight: 500;
}
h5{
    font-size: 1rem;
    font-weight: 500;
}
.login-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  
    overflow:hidden;
}
@media screen and (max-width:767px){
    .login-page-container {
        padding: 20px;
    }
   
}
/*.login-content{
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content:center;
    max-height:100vh;
}*/
.login-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 420px; /* Restrict card width */
    padding: 15px;
    box-sizing: border-box;
}
/*.login-logo{
    width:40%;

}*/
 /* Logo scaling */
.login-logo {
    width: 160px;
    max-width: 40%;
/*    height: auto;*/
    margin-bottom: 15px;
}
/*.login-card {
    
   
    margin-top: auto;
    margin-bottom: auto;
  
    
    background-color: rgba(0, 0, 0, 0.5) !important;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 2px solid #e1af3c;
    border-radius: 0.25rem 4px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(225, 175, 60, 0.3), 0 8px 20px rgba(225, 175, 60, 0.4);
}*/
.login-card {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #e1af3c;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(225, 175, 60, 0.3), 0 8px 20px rgba(225, 175, 60, 0.4);
}
/* Responsive text */
h4, h5 {
    text-align: center;
    word-wrap: break-word;
}
.login-header{
    display:flex;
    align-items:center;
    text-align:center;
    justify-content:center;
    font-weight:600;
}
.login-user {
    background-color: #e1af3c;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
}
.input-login {
    display: flex;
    border: 0px;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
 
    border: 2px solid #e1af3c;

    transition: border-color .3s ease-in-out, box-shadow .3s ease-in-out;
}


    .form-control:focus {
        border-color: #e1af3c;
        box-shadow: 0 0 8px rgba(225, 175, 60, 0.6);
        outline: none;
    }

.login-button{
    display:flex;
    align-items:flex-end;
    justify-content:flex-end;
}
.btn-gold {
    background: #e1af3c;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(225, 175, 60, 0.4);
}

    .btn-gold:hover {
        /* Gradient on hover */
        background: linear-gradient(135deg, #e1af3c, #c9951d);
        transform: translateY(-1px);
        box-shadow: 0 6px 14px rgba(225, 175, 60, 0.6);
        color: #fff;
    }

    .btn-gold:active {
        transform: translateY(0);
        box-shadow: 0 3px 8px rgba(225, 175, 60, 0.4);
    }
.lg-num{
    display:flex;
     align-items:center;
    
    justify-content:center;
    text-align:center;
}
.mob-num{
    text-decoration: none;

}
    .mob-num:hover {
        color: #e1af3c;
    }
.apply-btn{
    width:80%;
}
.login-footer {
    color: #e1af3c;
    font-size: 1rem;
    font-weight: 600;
}
.lg-para{
  color: white;
  font-weight: 600;
  text-decoration: none;
}

/* Mobile responsiveness */
@media (max-width: 576px) {
    .login-card {
        padding: 15px;
    }

    .login-logo {
        width: 140px;
    }

    .btn-gold, .apply-btn {
        width: 100%; /* Full width on small screens */
    }
}
.login-link{
    text-decoration:none;

}