/* Basic styling for the wrapper */
.wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.wrapper img{
    height:80px;
    width:80px;
}

.wrapper h1, .wrapper h2, .wrapper h5 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    margin-top: 10px;
}

input, select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

label {
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.input-box {
    margin-bottom: 15px;
}

.button input {
    width: 100%;
    background: #007bff;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.button input:hover {
    background: #0056b3;
}

/* Responsive grid styling */
.tt {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.input-box {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .input-box {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .input-box {
        flex: 1 1 100%;
    }
    label{
        font-size: 14px !important;
        margin-bottom: 3px;
    }
    input, select{
        padding: 5px;
        margin: 5px;
    }
    .tt {
        gap: 5px;
    }
}
img.captcha{
    height: auto;
    width: 50%;
  }
  .flex-d{
    display: flex;
    align-items: center;
  }
  .flex-d i{
    float: right;
    margin-left: 30px;
    color: #888;
    cursor: pointer;
    font-size: 25px;
  }
