.page-template-quiz {
    width: 100%;
    height: 100vh;
    margin: 0;
    background: url(https://api.zlatnakopacka.mk/wp-content/uploads/2024/09/kopacka-kviz.jpg);
    font-family: "Mulish", sans-serif;
    background-size: 100%;
    background-repeat: no-repeat;
    overflow: hidden;
    background-position: center bottom;
}

@media screen and (max-width: 1024px) {
	.page-template-quiz {
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
	}
}

.page-template-quiz .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.quiz-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 3rem auto;
    width: 35%;
    text-align: center;
    display: none;
    position: absolute;
    height: 60vh;
    left: 0;
    right: 0;
}

.quiz-wrapper[data-block="1"] {
    display: flex;
}

.questions-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quiz-wrapper h2 {
    color: white;
    margin-bottom: 3rem;
    font-size: 30px;
}

.questions {
    display: flex;
    width: 100%;
    justify-content: space-around;
    margin-bottom: 1rem;
	gap: 2rem;
}

.questions-wrapper .questions:nth-last-child(1) {
    justify-content: space-evenly !important;
}

.question {
    color: white;
    border: 1px solid white;
    width: 200px;
    text-align: center;
    border-radius: 30px;
    font-size: 22px;
    line-height: 1.2;
    padding: 0;
}

.question:hover {
    background: white;
    color: black;
}

.question p {
    margin: 0;
    padding: 10px;
    cursor: pointer;
    text-transform: uppercase;
}

.form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 70%;
}

.form-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-wrapper form input {
    background: none;
    border: 1px solid white !important;
    color: white;
    padding: 10px;
    border-radius: 30px;
    text-indent: 10px;
    font-size: 20px;
    box-shadow: none !important;
    outline: none !important;
}

.form-wrapper form input::placeholder {
    color: white !important;
}

.terms {
    font-size: 20px;
    align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

input#terms {
    height: 20px;
    width: 20px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    background: none;
    color: black;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border: 1px solid white;
    border-radius: 0;
    position: relative;
}

input#terms:checked {
    background: white;
}

input#terms:checked:before {
    content: '\2713';
    color: rgb(74, 95, 151);
    position: absolute;
    left: 0;
    text-indent: 0;
    top: 0;
    font-size: 20px;
    right: 0;
    text-align: center;
    line-height: 1;
    color: #e30613;
    font-weight: bold;
}

.terms * {
    color: white;
}

button.submit-btn {
    background: white;
    color: #e30613;
    font-size: 20px;
    padding: 10px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

p.form-response {
    color: white;
    font-size: 20px;
}

@media screen and (max-width: 1366px) {
    .questions {
        gap: 20px;
    }
    .quiz-wrapper {
        width: 60%;
    }
}

@media screen and (max-width: 768px) {

    .quiz-wrapper {
        width: 90%;
    }

    .questions {
        gap: 20px;
    }
	.terms{font-size:16px;gap:5px;}

}

@media screen and (max-width: 600px) {
    .logo img {
        max-width: 80%;
    }
	
	.form-wrapper form {
		width: 90%;
	}
	
	.quiz-wrapper h2 {font-size:26px;}
		
		

}
