body {
    background: rgb(240, 239, 238);
}

.test {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.test_container {
    display: flex;
    width: 95%;
    max-width: 1200px;
    flex-direction: column;
    margin: 50px 0;
}

.test_header {
    /* border-bottom: 1px solid rgb(0, 81, 255); */
    padding-bottom: 15px;
    margin-bottom: 25px;

    background: white;
    border-radius: 10px;
    padding: 20px;
}

.test_header p {
    margin-top: 5px;
}

/* form */

form {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.test_card {
    background: white;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 0px 30px rgba(0, 81, 255, 0.427);
    margin-bottom: 15px;
}

.question {
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 18x;
    letter-spacing: 1px;
}

.options {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #00000052;
    margin-bottom: 10px;
}

.option input {
    margin-right: 10px;
    cursor: pointer;
}

.option label {
    font-size: 14px;
    width: 100%;
    ;
    padding: 5px 0;
    cursor: pointer;
}

.options_name input {
    width: 100%;
    padding: 7px 10px;
    border: none;
    border-bottom: 1px solid #00000052;

    font-size: 14px;
    cursor: text;
    outline: none;
}

button {
    display: flex;
    width: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px 30px;
    border: 10px;

    border: none;
    outline: none;

    background: rgb(0, 81, 255);
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.submit_btn {
    width: 100%;
    padding: 15px;
    background: #0055ff;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
}

.submit_btn:hover {
    background: #0044cc;
    transform: translateY(-2px);
}

.test_input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 1rem;
}

.test_input:focus {
    border-color: #0055ff;
}

.test_card_header {
    background: #f8f9fa;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: #333;
}