.containerer {
    width: 90%;
    max-width: 500px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Input Container */
.input-con {
    margin-bottom: 20px;
}

/* Input Headings */
.input-head {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
}

/* Input Fields */
input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus, input[type="password"]:focus {
    border-color: #007bff;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.3);
    outline: none;
}

/* Select Answer Section */
.select-ans {
    margin-top: 20px;
}

.select-ans .input-head {
    margin-bottom: 10px;
}

.redio-button input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.submit {
    width: 100%;
    background-color: #007bff;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit:hover {
    background-color: #0056b3;
}

.submit-con{
    margin-top: 4%;
    text-align: center;
}