* {
    margin: 0;
    padding: 0;
}

/* SignUp Page */

.signup-container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #6a1b9a, #2196f3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.signup-form {
    width: 70vw;
    background-color: white;
    text-align: center;
    box-shadow: 7px 7px 10px black;
    position: relative;
}

.signup-form h2 {
    margin-top: 50px;
    margin-bottom: 25px;
    color: transparent;
    background: linear-gradient(135deg, #6a1b9a, #2196f3);
    background-clip: text;
    -webkit-background-clip: text;
}

.signup-form input {
    width: 80%;
    height: 30px;
    border: none;
    background-color: #e6e6e6;
    margin: 10px auto;
}

.signup-form input::placeholder {
    padding-left: 35px;
}

.signup-btn {
    width: 80%;
    margin: 25px auto 55px auto;
}

.signup-btn button {
    padding: 10px 0;
    border-radius: 20px;
    width: 48%;
    margin: 1%;
    font-weight: bold;
    font-size: 11px;
    border: none;
    background: linear-gradient(135deg, #6a1b9a, #2196f3);
    color: white;
}

.signup-form i {
    position: absolute;
    left: 0;
    transform: translate(calc(1vw + 35px), 17px);
    color: #666;
}

.signup-form input:not(:placeholder-shown) + i{
    display: none;
}

.container {
    background: linear-gradient(-110deg, #6a1b9add, #2196f3dd);
    min-height: 100vh;
    color: white;
    width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.container h2 {
    padding: 10px;
}

.quiz-box {
    width: 80%;
    margin: 10px 0;
    border: 1px solid black;
    border-radius: 25px;
    box-shadow: 5px 5px 10px black;
}

.quiz-box b {
    font-size: 18px;
}

.opt-box {
    width: 80%;
    padding: 0 10% 25px 10%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.quiz-box p {
    margin: 25px 10px;
}

.option {
    height: 70px;
    background-color: #ffffff88;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Times New Roman', Times, serif;
}

.btn-cont {
    display: flex;
    justify-content: center;
    margin-bottom: 50px !important;
}

.submit {
    margin: 10px;
    background-color: #ffffff88;
    padding: 7px 15px;
    border: 1px solid black;
    border-radius: 5px;
}

/* Quizzes Page */

.quiz-box .input {
    text-align: center;
    padding: 60px 0px;
    font-size: 18px;
    font-weight: bold;
}

.input input {
    margin: 25px 0;
    height: 20px;
    border-radius: 5px;
    border: 1px solid black;
}

/* marks page */

.marks-cont {
    padding: 50px 25px;
}

.marks-table {
    width: 100%;
    border-collapse: collapse;
}

.marks-table thead {
    background-color: black;
}

.marks-table tr td {
    border: 1px solid;
    width: 50%;
    padding: 2px 15px;
}

/* Result page */

.result {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.circle-cont {
    background-color: #ffffff55;
    height: 60vh;
    width: 80vw;
    display: flex;
    align-self: center;
    margin-bottom: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    mask: radial-gradient(circle, transparent 60%, black 60%);
}

.inner-circle {
    width: 100px;
    height: 100px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    color: #000;
}

.abs {
    position: absolute;
    top: 20vh;
    color: #000;
}

/* link */

.link {
    width: 80vw;
    height: 60px;
    background-color: #ffffff88;
    border-radius: 10px;
    margin: 20px 0;
    display: flex;
    align-items: center;
}

.link-text {
    margin: 0 15px;
    color: #000;
    background-color: #ffffffcc;
    padding: 3px 15px;
    border-radius: 5px;
}

.link button {
    background-color: #ffffffcc;
    border: none;
    padding: 5px;
    font-size: 18px;
    border-radius: 5px;
}


@media (min-width: 485px) {
    .signup-form, .quiz-box, .circle-cont, .link {
        width: 80vw;
    }
}

@media (min-width: 600px) {
    .signup-form, .quiz-box, .circle-cont, .link {
        width: 50vw;
    }
}

@media (min-width: 768px) {
    .signup-form, .quiz-box, .circle-cont, .link {
        width: 40vw;
    }
}

@media (min-width: 992px) {
    .signup-form, .quiz-box, .circle-cont, .link {
        width: 35vw;
    }
}

@media (min-width: 1200px) {
    .signup-form {
        width: 25vw;
    }
    .quiz-box, .link {
        width: 30vw;
    }
}