body {
    font-family: Arial, sans-serif;
    background-color: #0390fc;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 50px auto;
}

.form-container {
    max-width: 450px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    
}
#formTitle{
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin-top: 20px;
}

h2 {
    margin-bottom: 20px;
}

form {
    display: none;
}

form.active {
    display: block;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

.switch-btn {
    display: block;
    margin-top: 10px;
    cursor: pointer;
    color: #0390fc;
    text-decoration: underline;
}

.popup {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.popup-content {
    background-color: #4dcdf7;
    margin: 20% auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 30%;
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

  @media (max-width: 320px) {
    .form-container {
        width: 80%;
        margin: 10px;
    }
}



body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #5192f5;
    color: #000;
}

.mainHeading {
    background-color: #5dfcda;
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center; /* Align items vertically */
    text-align: center;
}
.heading{
    flex:1;
     
}
.logout{
   height: 20px;
    width: 20px;
    margin-left: 10px;
    margin-right: 20px;
    cursor: pointer;
    margin-top: -19px;
}

.parentContainer {
    width: 100%;
    display: flex;
    justify-content: space-around;
    /* align-items: center; */
    flex-direction: row;
    flex-wrap: wrap;
}

.QuestionContainer {
    width: 550px;
    margin: 20px;
    background-color: transparent;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
   
}
/* 
.container:hover {
    background-color: #2f79eb;
} */

table {
    width: 100%;
    /* border-collapse: collapse; */
    border: 1px;
    margin-bottom: 20px;
}

th,
td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

td {
    cursor: pointer;
}



/* Custom radio button style */
.custom-radio {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #007bff;
    /* Border color for unchecked state */
    border-radius: 50%;
    /* Rounded shape */
    margin-right: 10px;
}

/* Custom radio button inner dot (checked state) */
.custom-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #007bff;
    /* Inner dot color for checked state */
    border-radius: 50%;
    display: none;
}

/* Show inner dot when radio button is checked */
input[type="radio"]:checked+.custom-radio::after {
    display: block;
}


.buttons {
    text-align: center;
}

button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45a049;
}



.allQuestionContainer {
    width: 400px;
    background-color: #1804c9;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
    align-self:self-start;
    
    display: flex;
    align-items: center;
    /* justify-content: center; */
    flex-direction: column;
    flex-wrap: wrap;

}

.allQuestions {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px auto;
}

.queButton {
    height: 40px;
    padding: 5px;
    width: 40px;
    margin: 5px;
    font-weight: bold;
    border-radius: 50%;
    border: none;
    background: #609ffc;
    cursor: pointer;
}

.queButton:hover {
    background-color: #3cfa3f;
    scale: 1.05;
}

.button-container {
    /* display: none; */
    display: flex;
    justify-content: space-between;
    /* Horizontal space around */
    margin: 10px 0;
    /* Margin for spacing */
}

.error {
    color: #c20802;
    font-weight: bold;
     display: none;
}
.increaseingLine{
    display: none;
    color: red;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 2px solid red;
    transition: width 5s;
    width: 0;
    animation: increaseWidth 5s linear forwards;
}
@keyframes increaseWidth {
0% {
width: 0; /* Start from 0% width */
}
100% {
width: 100%; /* End at 100% width */
}
}

span {
    content: "\26A0";
}

input[type="text"], input[type="email"], input[type="password"] {
    width: 100%;
    padding: 6px;
    margin-bottom: 0px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #5192f5;
    color: #000;
}

.mainHeading {
    background-color: #5dfcda;
padding: 10px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center; /* Align items vertically */
text-align: center;
}
.heading{
    flex:1;
     
}
.logout{
   height: 20px;
width: 20px;
margin-left: 10px;
margin-right: 20px;
cursor: pointer;
}

.parentContainer {
    width: 100%;
    display: flex;
    justify-content: space-around;
    /* align-items: center; */
    flex-direction: row;
    flex-wrap: wrap;
}

.QuestionContainer {
    width: 550px;
    margin: 20px;
    background-color: transparent;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
   
}

.container:hover {
    background-color: #2f79eb;
}

table {
    width: 100%;
    /* border-collapse: collapse; */
    border: 1px;
    margin-bottom: 20px;
}

th,
td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

td {
    cursor: pointer;
}



/* Custom radio button style */
.custom-radio {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #007bff;
    /* Border color for unchecked state */
    border-radius: 50%;
    /* Rounded shape */
    margin-right: 10px;
}

/* Custom radio button inner dot (checked state) */
.custom-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #007bff;
    /* Inner dot color for checked state */
    border-radius: 50%;
    display: none;
}

/* Show inner dot when radio button is checked */
input[type="radio"]:checked+.custom-radio::after {
    display: block;
}


.buttons {
    text-align: center;
}

button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45a049;
}



.allQuestionContainer {
    width: 400px;
    background-color: #1804c9;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
    align-self:self-start;
    
    display: flex;
    align-items: center;
    /* justify-content: center; */
    flex-direction: column;
    flex-wrap: wrap;

}

.allQuestions {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px auto;
}

.queButton {
    height: 40px;
    padding: 5px;
    width: 40px;
    margin: 5px;
    font-weight: bold;
    border-radius: 50%;
    border: none;
    background: #609ffc;
    cursor: pointer;
}

.queButton:hover {
    background-color: #3cfa3f;
    scale: 1.05;
}

.button-container {
    /* display: none; */
    display: flex;
    justify-content: space-between;
    /* Horizontal space around */
    margin: 10px 0;
    /* Margin for spacing */
}

.error {
    color: #c20802;
    font-weight: bold;
     display: none;
}
.increaseingLine{
    display: none;
    color: red;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 2px solid red;
    transition: width 5s;
    width: 0;
    animation: increaseWidth 5s linear forwards;
}
@keyframes increaseWidth {
0% {
width: 0; /* Start from 0% width */
}
100% {
width: 100%; /* End at 100% width */
}
}

span {
    content: "\26A0";
}