/* ::-webkit-scrollbar {
    display: none;
} */

/* For Firefox */
/* html {
    scrollbar-width: none;
} */

body{
    background-color: #f5f5f5;
    height: 110vh;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    /* -ms-overflow-style: none; */
}

h1{
    color: rgb(255, 179, 36);
}

p{
    color: #333;
    margin: 2px;
}

a{
    font-weight: bold;
    color: rgb(255, 166, 0);
}

a:hover{
    text-decoration: underline;
}

input{
    outline: transparent;
    color: #333;
    font-size: 17px;
    padding: 16px ; /* Top, Right, Bottom, Left*/
    border-radius: 4px;
    border: solid 1px rgb(231, 231, 231);
    background-color: whitesmoke;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

input:focus{
    border: 1px solid;
    border-color: rgb(255, 179, 36);
    background-color: white;
    box-shadow: 0 0 8px rgba(255, 179, 36, 0.6);
    transition: 0.3s ease-in-out;
}

input::placeholder {
    color: #969494;
}

form{
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0px 4px rgba(70, 70, 70, 0.322);
}

button{
    color:  white;
    border-style: none;
    border-radius: 4px;
    background-color: rgb(250, 183, 59);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover{
    background-color: rgb(248, 190, 81);
    cursor: pointer;
}

footer {
    height: 100px;
    text-align: center;
    background-color: #fff;
    margin: 0px;
    margin-top: 50px;
    width: 100%;
    bottom: 0;
    position: relative; 
    padding: 55px 0;
}

footer p{
    font-size: 13px;
    color: #969696;
}

footer a{
    font-size: 13px;
    font-weight: normal;
    color: #969696;
    margin: 0 15px; 
    text-decoration: none; 
}

footer img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease; /* smooth animation */
}

footer img:hover{
    transform: translateY(-5px); /* lift up effect */
}
    

label{
    font-size: 16px;
    color: #333;
}

textarea {
    width: 100%; /* Full width */
    height: 100px; /* Adjust height */
    padding: 10px; /* Add some padding */
    font-size: 17px; /* Make text readable */
    font-family: Arial, sans-serif; /* Font style */
    border: 1px solid #ccc; /* Border color */
    border-radius: 8px; /* Rounded corners */
    resize: none; /* Disable resizing */
    background-color: #f9f9f9; /* Light background */
    outline: none; /* Remove default outline */
}

/* Add focus effect */
textarea:focus {
    border-color: rgb(255, 179, 36); /* Highlight border when focused */
    background-color: #fff; /* White background */
    box-shadow: 0 0 8px rgba(255, 179, 36, 0.6);
    transition: 0.3s ease-in-out; /* Subtle glow effect */
}

textarea::placeholder {
    font-size: 15px;
}

.hidden-input {
    display: none;
    color: transparent;
    width: 5px;
    height: 5px;
    font-size: 8px;
    box-shadow: none;
    border-style: none;
    border-color: transparent;
    background-color: transparent;
}

.hidden-input:focus{
    box-shadow: none;
    border-style: none;
    border: none;
    border-color: transparent;
    background-color: transparent;
}

.live_max_length{
    font-family: poppins;
    font-weight: 500;
    font-size: 13px;
    color: #7e7e7e;
}

form .live_max_length{
    font-family: poppins;
    font-weight: 500;
    font-size: 13px;
    color: #7e7e7e;
}



.attempt-message{
    
    color: #d9534f;
    margin: 10px 0;
    font-size: 0.9em;
    font-family: poppins, sans-serif;
    font-weight: bold;
}

.btn-disabled {
    background-color: #ccc !important;
    color: #666 !important;
    cursor: not-allowed !important;;
    border: 1px solid #999;
    opacity: 0.7;
}

#countdownText .otp-expired {
    color: red;
    font-weight: bold;
}