* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}


body {
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    box-sizing: border-box;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner{
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.banner > img{
    width: 90vw;
    height: auto;
}

.container h1 {
    color: #008c45;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Input Container */
.input-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}


/* Input Field */
.input-container input {
    flex: 1;
    padding: 10px 15px;
    font-size: 16px;
    border: 2px solid #008c45;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease-in-out;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: inset 0px 4px 8px rgba(0, 0, 0, 0.05);
}

.input-container input:focus {
    border-color: #00572a;
    box-shadow: 0px 0px 8px rgba(0, 140, 69, 0.5);
}

/* Button */
.input-container button {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background: #008c45;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.input-container button:hover {
    background: #00572a;
    box-shadow: 0px 6px 12px rgba(0, 87, 42, 0.3);
}


.loader {
    position: absolute;
    top: 50%;
    left: 45%;
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #008c45;
    width: 150px;
    height: 150px;
    animation: spin 1s linear infinite;
  }


  label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

/* Styling the Select Dropdown */
select {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
    appearance: none; /* Removes default dropdown arrow in some browsers */
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Add a custom arrow */
select::-ms-expand {
    display: none;
}

select:focus {
    border-color: #3c8dbc; /* Highlight color on focus */
    background-color: #fff;
}

/* Custom Arrow using Pseudo-element */
select::after {
    content: '▼';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #888;
    font-size: 18px;
}
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

/* Responsive Design */
@media screen and (max-width: 480px) {
    .container {
        padding: 20px;
    }

    .input-container > div >input, .input-container > div > button {
        font-size: 14px;
    }

    .input-container > div{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #validate-btn{
        margin-top: 12px;
    }
}