:root {
    --red: #f55050;
    --dark-red: #541117;
}

* {
    font-family: Rubik, sans-serif;
    scroll-behavior: smooth;
    outline: 0 !important;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

.mb-2 {
    margin-bottom: 20px;
}

.alert {
    display: block;
}

.container {
    max-width: 100%;
    width: 1400px;
    margin: auto;
}

.login-page {
    height: 100vh;
    width: 100%;
    background-image: url(bg.webp);
    background-size: cover;
    background-position: center center;
}

.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-page form {
    background: #fff;
    border-radius: 5px;
    padding: 30px;
    max-width: 540px;
}

.login-page .icon img {
    max-width: 150px;
}


input:not([type="radio"]), select, textarea {
    -webkit-appearance: none;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    padding: 15px;
    margin: 5px 0;
    transition: .3s;
    border: 2px solid #ddd;
    font-size: 16px;
    color: #000
}

button {
    width: 100%;
    border-radius: 5px;
    padding: 15px;
    margin: 5px 0;
    border: 0;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
    background: var(--red);
    transition: 300ms;
    font-weight: 600;
}

button:hover {
    background: var(--dark-red);
}

.alert {
    padding: 15px;
    border-radius: 5px;
}

.alert.alert-danger {
    background: var(--red);
    color: #fff;
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 30px 0;
}

.app-header .logo {
    width: 350px;
}

.app-header .logo img {
    width: 100%;
}

.app-header .actions {
    width: calc(100% - 350px);
    padding-left: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-header .actions > div {
    display: flex;
    align-items: centeR;
    justify-content: space-between;
}

.app-header .actions > div > .menu-link {
    color: #000;
    font-weight: 600;
    margin-right: 10px;
    transition: 300ms;
}

.app-header .actions > div > .menu-link:Hover {
    color: var(--red);
}

.surveys {
    position: relative;
    margin-top: 20px;
}

.surveys .survey-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    transition: 300ms;
}

.surveys .survey-item:Hover {
    border-color: #ddd;
}

.surveys .survey-item button {
    width: 150px;
}

.surveys .survey-item:last-child {
    border: 0;
}

.surveys .survey-item .title {
    color: #000;
    font-weight: 500;
    transition: 300ms;
}

.surveys .survey-item:Hover .title {
    color: var(--red);
}

.app-content {
    padding: 0 50px;
}

.app-content h3 {
    font-size: 25px;
}

.survey-form h2 {
    margin-bottom: 20px;
}

.survey-form .questions .question {
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #eee;
    margin-bottom: 20px;
}


.survey-form .questions .question .question-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
}

.survey-form .questions .question .options {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: Wrap;
    margin-left: -5px;
}

.survey-form .questions .question .options .option {
    position: relative;
    padding: 5px 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    margin: 5px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.survey-form .questions .question .options .option .option-title {
    user-select: none;
}

.survey-form .questions .question .options .option input {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.survey-form .questions .question .options .option:has(input:checked) {
    background: var(--red);
    color: #fff;
    border-color: transparent;
}

.success-message-wrapper {
    margin: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.success-message {
    margin: 50px 0;
}

.success-message .icon img {
    width: 50px;
    margin-bottom: 30px;
}

.success-message h3 {
    margin-bottom: 10px;
}

.success-message p {
    margin-bottom: 30px;
}

.alert.alert-warning {
    background: #ffc825;
    margin-bottom: 30px;
}

ul {
    margin-left: 20px;
    margin-top: 20px;
}

ul li {
    margin: 10px 0;
}

.copyright {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
}

.copyright a {
    color: var(--red);
    font-weight: 500;
    transition: 300ms;
}

.copyright a:hover {
    color: #000;
}

@media (max-width: 996px) {
    .login-page {
        padding: 0 30px;
    }

    .container {
        width: 100%;
        padding: 0 30px;
    }

    .app-header .logo {
        width: 120px;
    }

    .app-header .actions h3 {
        display: none;
    }

    .app-content {
        padding: 0;
    }

    .survey-form .questions .question {
        padding: 15px;
    }

    .survey-form .questions .question .question-title {
        font-size: 16px;
    }

    .survey-form .questions .question .options .option {
        font-size: 14px;
    }

    .survey-form h2 {
        font-size: 18px;
    }

    .login-page .icon img {
        max-width: 70px;
    }

    .app-header {
        flex-direction: column;
    }

    .app-header .actions {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .app-header .actions > div,
    .app-header .actions > div .dealer {
        width: 100%;
    }

    .app-header .actions > div .dealer {
        font-size: 14px;
        opacity: .5
    }

    .app-header .actions > div > .menu-link {
        display: none;
    }

    .login-page form h2 {
        font-size: 16px;
    }

    input:not([type="radio"]), select, textarea {
        padding: 10px;
        font-size: 14px;
    }

    button {
        padding: 10px;
        font-size: 14px;
    }
}
