/* glob */
* {
    box-sizing: border-box;
    font-family: 'Betclic';
}

body {
    background-color: #EEF0F3;
    margin: 0px;
}

.max-width-page {
    max-width: 1455px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;

}
.input-error {
  border-color: #e00;
  background-color: #fee;
}
.padding-glob {
    padding-left: 75px;
    padding-right: 75px;
}

.btn-wrapper {
    display: flex;
}

.btn-primary {
    padding: 15px 35px;
    border-radius: 30px;
    color: white;
    background-color: #E10114;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0px;
    outline: none;
    cursor: pointer;

    font-size: 17px;
    line-height: 24px;
    font-weight: 500;
}

.btn-primary svg {
    width: 25px;
    height: auto;
    flex: 0 0 25px;
    fill: white;
}

.btn-disabled {
    background-color: #BFBFBF;
}

.btn-primary-disabled {
    font-style: italic;
    background-color: #BFBFBF;
    cursor: not-allowed;
    font-size: 16px;
    line-height: 17px;
    font-weight: 400;
    padding: 19px 35px;
}

@media only screen and (max-width: 1250px) {
    .padding-glob {
        padding-left: 50px;
        padding-right: 50px;
    }
}

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

    .padding-glob {
        padding-left: 15px;
        padding-right: 15px;
    }

}

/* Strona głosowania */
.section-voting-box {
    display: flex;
    gap: 75px;
}

.section-voting-box .left-col {
    flex: 1;
}

.section-voting-box .right-col {
    width: 363px;
    position: relative;
}

.section-voting-wrapper h2 {
    font-size: 42px;
    line-height: 50px;
    font-weight: 400;
    margin: 0px;
    margin-bottom: 50px;
    margin-top: 50px;
}

.voting-category-title {
    font-size: 18px;
    line-height: 28px;
    color: black;
    font-weight: 400;
    margin: 0px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.voting-category-title::before {
    content: "";
    background-color: #CCCCCC;
    height: 1px;
    flex: 1;
    max-width: 50px;

}

.voting-category-title::after {
    content: "";
    background-color: #CCCCCC;
    height: 1px;
    flex: 1;

}

.voting-category-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.single-candidate {
    background-color: white;
    border-radius: 38px;
    display: flex;
    align-items: center;
    padding: 5px;
    padding-right: 22px;
    justify-content: space-between;
}

.single-candidate.selected {
    border: 1px solid #E10114;
    ;
}

.single-candidate-left-col img {
    width: 66px;
    height: 66px;
    object-fit: cover;
    border-radius: 66px;
}

.single-candidate-left-col {
    display: flex;
    align-items: center;
    /* gap: 16px; */
}

.single-candidate-info {
    margin-left: 16px;
}

.single-candidate-left-col .single-candidate-info h3 {
    font-size: 16px;
    line-height: 24px;
    color: black;
    font-weight: 400;
    margin: 0px;
}

.single-candidate-left-col .single-candidate-info p {
    color: #E10114;
    font-size: 14px;
    line-height: 21px;
    font-style: italic;
    margin: 0px;
    margin-top: 4px;
}

.single-candidate-right-col {
    background-color: #D2171E;
    padding: 9px 14px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
    color: white;
}

.candidates-list-loop {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.voting-category-video iframe {
    width: 100%;
    border-radius: 60px;
    aspect-ratio: 437/425;
    height: auto;
}

.voting-category-video .img-video-cap {
    position: relative;
    display: flex;
}

.voting-category-video .img-video-cap img {
    width: 100%;
    border-radius: 60px;
    aspect-ratio: 437/425;
    height: auto;
    object-fit: cover;
}

.modal-video-cap-play {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    aspect-ratio: 437 / 425;
    border: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    cursor: pointer;

}

.voting-category-loop .single-voting-category-preview:not(:first-child) {
    margin-top: 50px;
}



@media only screen and (max-width: 1250px) {
    .voting-category-content {
        grid-template-columns: repeat(1, 1fr);
    }

    .section-voting-box {
        gap: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .section-voting-box {
        flex-direction: column-reverse;
    }

}


/* box pływający */

.voting-box-floating {
    position: sticky;
    background-color: rgb(0, 0, 0);
    top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 25px;
    border-radius: 60px;
    margin-top: 50px;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.voting-box-floating h2 {
    max-width: 190px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 24px;
    line-height: 28px;
    color: white;
    text-align: center;
    margin: 0px;
    font-weight: 400;
}

.box-instruction {
    margin-top: 40px;
}

.single-step-instruction {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    align-items: center;
}

.single-step-instruction-number {
    font-size: 24px;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    background-color: white;
    position: relative;
}

.single-step-instruction:not(:last-child) .single-step-instruction-number:after {
    content: '';
    position: absolute;
    height: 20px;
    width: 2px;
    background-color: white;
    display: block;
    top: calc(100% + 15px);
}

.single-step-instruction h3 {
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    color: white;
    margin: 0px;
    margin-bottom: 8px;
}

.single-step-instruction p {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    font-style: italic;
    color: white;
    margin: 0px;

}

.voting-box-floating .btn-primary {
    padding: 11px 40px;
}

.voting-box-floating .start-voting-info {
    font-size: 14px;
    line-height: 21px;
    color: white;
    font-weight: 400;
    margin: 0px;
    margin-top: 20px;
    text-align: center;
}

.voting-box-floating .start-voting-info b {
    font-weight: 500;
}

.voting-box-floating .btn-wrapper {
    justify-content: center;
}

.floating-box-countdown.voting-countdown {
    text-align: center;
}

.floating-box-countdown.voting-countdown .voting-countdown-desc,
.transmission-desc {
    font-size: 14px;
    line-height: 21px;
    color: white;
    margin: 0px;
    margin-bottom: 10px;
    text-align: center;
}

.header-transmission-desc {
    margin-top: 15px !important;
}

.floating-box-countdown.voting-countdown .voting-countdown-desc.second-desc {
    margin-top: 15px;
    margin-bottom: 0;
}

.floating-box-countdown.voting-countdown .voting-countdown-desc.second-desc a,
.transmission-desc a,
.start-voting-info a {
    color: rgb(255, 3, 3);
    font-weight: 500;
    text-decoration: underline;
}

.voting-box-floating .active-voting .btn-wrapper {
    margin-bottom: 20px;
}

.start-voting-info-mobile {
    display: none;
}

/* SEKCJA HERO */
.hero-wrapper {
    max-width: 1455px;
    margin-left: auto;
    margin-right: auto;

    width: 100%;
    height: 700px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: normal;
    position: relative;
    border-radius: 0 0 60px 60px;
    overflow: hidden;

    display: flex;
    align-items: flex-end;
    padding-top: 150px;
    padding-bottom: 75px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-wrapper::after {
    content: "";
    background-color: black;
    position: absolute;
    width: 100%;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    opacity: 0.4;
}

.hero-wrapper .hero-content h1 {
    color: white;
    font-size: 60px;
    line-height: 92px;
    margin: 0px;
    font-weight: 400;
}

.hero-wrapper .start-voting-info-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-wrapper .start-voting-info-wrapper::before {
    content: "";
    background-color: #ffffff;
    width: 45px;
    height: 2px;
}

.hero-wrapper .start-voting-info {
    font-size: 18px;
    line-height: 28px;
    color: white;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 0px;

}

.hero-wrapper .start-voting-info b {
    font-weight: 500;
}

.hero-countdown {

    border-left: 2px solid #E10114;
    margin-bottom: 20px;
}

.voting-countdown-date {
    display: flex;
} 

.voting-box-floating .voting-countdown-date {
    justify-content: center;
}

.hero-countdown .voting-countdown-desc {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: white;
    margin: 0px;
    margin-bottom: 10px;
    padding-left: 15px;
}

.voting-countdown-date .single-time {
    padding-left: 15px;
    padding-right: 15px;
}

.voting-countdown-date .single-time:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.500);
}

.voting-countdown .single-time-value {
    color: white;
    font-size: 36px;
    line-height: 46px;
    font-weight: 500;
    min-width: 50px;
    text-align: center;
}

.voting-countdown .single-time-title {
    color: white;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
}

.hero-content .btn-wrapper {
    margin-top: 35px;
}



@media only screen and (max-width: 768px) {
    .section-voting-box .right-col {
        width: 100%;
    }

    .start-voting-info-desktop {
        display: none;
    }

    .hero-wrapper .start-voting-info.start-voting-info-mobile {
        display: block;
        justify-content: center;
        text-align: center;
        font-size: 14px;
        line-height: 20px;
        margin-top: 20px;
    }

    .hero-before-voting button {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-wrapper {
        height: auto;
    }

    .hero-countdown .voting-countdown-desc {
        font-size: 14px;
        text-align: center;
    }

    .hero-countdown .voting-countdown-date {
        justify-content: center;
    }
    .hero-countdown{
        border-left: 0px;
    }
    .floating-box-countdown.voting-countdown .voting-countdown-desc{
        text-align: center;
    }
}



@media only screen and (max-width: 768px) {
    .hero-before-voting button {
        margin-top: 25px;
    }

    .hero-wrapper .hero-content h1 {
        text-align: center;
    }
    .hero-countdown .voting-countdown-desc{
        padding-left: 0px;
    }
}


/* HEADER */

header {
    position: absolute;
    top: 75px;
    width: 100%;
    z-index: 10;
}

.logo-link-menu {
    display: block;
    max-width: 150px;
    width: 100%;
}

.logo-link-menu img {
    width: 100%;
}

@media only screen and (max-width: 768px) {
    header {
        top: 50px;
    }

    .logo-link-menu {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-wrapper .hero-content h1 {
        font-size: 50px;
        line-height: 58px;
    }

    .start-voting-info{
        text-align: center;
    }
}


/* FOOTER */

.footer-content {
    border-top: 1px solid #CCCCCC;
    margin-top: 75px;
    padding-top: 35px;
    padding-bottom: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
}

.footer-content .left-col {
    display: flex;
    align-items: center;
    gap: 35px;
    flex: 1;
}

.footer-content .left-col .logo-footer {
    max-width: 166px;
    width: 100%;
    height: auto;
}

.footer-content .left-col p {
    font-size: 16px;
    line-height: 24px;
    color: black;
    margin: 0px;
}

.footer-content .right-col {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-content .right-col a {
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: black;
    margin: 0px;
    text-decoration: none;
    padding-top: 20px;
    padding-bottom: 20px;
    text-transform: uppercase;

}

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

    .footer-content {
        flex-direction: column;
        gap: 15px;
    }

}

@media only screen and (max-width: 768px) {
    .footer-content .left-col {
        flex-direction: column;
    }

    .footer-content .right-col {
        flex-direction: column;
        gap: 0px;
    }

    .footer-content .right-col a {
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .footer-content {
        gap: 9px;
    }

}



/* SIMPLE PAGE */
.page-content {
    margin-top: 200px;
    margin-bottom: 75px;
}


.simple-page-content {
    background-color: white;
    border-radius: 60px;
    padding: 50px;

}

.simple-page-content h1 {
    color: black;
    text-align: center;
    font-size: 50px;
    line-height: 78px;
    font-weight: 400;
    margin: 0px;
    margin-bottom: 50px;
}

.simple-page-content h2 {
    color: black;
    font-size: 18px;
    line-height: 26px;
    font-weight: bold;
    margin-bottom: 30px;
    margin-top: 50px;
}

.simple-page-content p {
    font-size: 16px;
    line-height: 24px;
    color: black;
    margin-top: 30px;
    margin-bottom: 30px;
}

.simple-page-content li {
    font-size: 16px;
    line-height: 24px;
    color: black;
}

.simple-page-content>ul,
.simple-page-content>ol {
    margin-top: 30px;
    margin-bottom: 30px;
}

.simple-page-content ul,
.simple-page-content ol {
    padding-left: 15px;
}

@media only screen and (max-width: 768px) {
    .simple-page-content h1 {

        font-size: 30px;
        line-height: 40px;

        margin: 0px;
        margin-bottom: 50px;
    }

    .simple-page-content {
        padding: 50px 25px;
    }

}




/* VOTING MODAL */

.voting-modal-wrapper {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: rgba(0, 0, 0, 0.30);
    z-index: 11;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.voting-modal-wrapper form {
    max-width: 920px;
    width: 100%;
}

.voting-modal-inside {
    background-color: white;
    border-radius: 60px;
    padding: 50px;
    max-width: 920px;
    width: 100%;
    position: relative;
    max-height: 90dvh;
    overflow: auto;
}

.close-voting-modal {
    position: absolute;
    right: 35px;
    top: 35px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: transparent;
    border: 1px solid #CECECE;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-voting-modal svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: black;
}

.voting-modal-header h2 {
    font-size: 36px;
    line-height: 50px;
    text-align: center;
    margin: 0px;
    font-weight: 400;
}

.steps-progress-text {
    font-size: 14px;
    line-height: 21px;
    color: black;
    font-weight: 400;
    margin-bottom: 10px;
}

.progress-bar {
    height: 6px;
    width: 100%;
    border-radius: 3px;
    background-color: #F0F0F0;
}

.progress-bar .progress-bar-fill {
    height: 6px;
    background-color: #E10114;
    border-radius: 3px;
}

.modal-voting-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-top: 25px;
    margin-bottom: 35px;
}

.modal-voting-category-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: black;
}

.modal-voting-category-title .modal-voting-category-title-value {
    font-weight: 500;
    color: #E10114;
}

.modal-video-material {
    background-color: transparent;
    padding: 0px;
    margin: 0px;
    cursor: pointer;
    outline: none;
    border: none;

    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: black;
    text-decoration: underline;
}

/*  */
.modal-cantidates-loop .single-candidate {

    padding: 0px;
}

.modal-cantidates-loop ul.radio-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.modal-cantidates-loop {
    margin-top: 35px;
    margin-bottom: 35px;
}

/* Schowaj standardowe radio */
.modal-cantidates-loop input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Kafelek-label */
.modal-cantidates-loop label.radio-card {
    display: flex;
    align-items: center;
    border: 1px solid #CECECE;
    border-radius: 38px;
    padding: 5px;
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease;
    position: relative;
    background: #fff;
    width: 100%;

}

.modal-cantidates-loop label.radio-card:hover {
    border-color: #E10114;
}

/* Avatar */
.modal-cantidates-loop .radio-card .avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

/* Tekst */
.modal-cantidates-loop .radio-card .details .name {
    display: block;
    font-size: 1em;
    font-weight: bold;
}

.modal-cantidates-loop .radio-card .details .team {
    display: block;
    font-size: 0.9em;
    color: #c00;
}

/* Ptaszek – domyślnie ukryty */
.modal-cantidates-loop .radio-card .checkmark {
    position: absolute;
    right: 20px;
    font-size: 16px;
    color: transparent;
    /* display: none; */
    display: block;

    width: 24px;
    height: 24px;
    border: 1px solid #CECECE;
    background-color: #F7F7F7;
    border-radius: 24px;
}

/* Styl zaznaczonego */
.modal-cantidates-loop input[type="radio"]:checked+label.radio-card {
    border-color: #E10114;

}

.modal-cantidates-loop input[type="radio"]:checked+label.radio-card .checkmark {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #E10114;
    border-color: #E10114;
}


.voting-modal-inside .modal-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.voting-modal-inside .modal-buttons-wrapper .btn-prev-step {
    background: transparent;
    border: 1px solid #E10114;
    color: #E10114;
}

.voting-modal-inside .modal-buttons-wrapper .btn-prev-step svg {
    transform: rotate(180deg);
    fill: #E10114;
}

.modal-video-material-mobile {
    display: none;
}

@media only screen and (max-width: 768px) {
    .modal-cantidates-loop ul.radio-list {

        grid-template-columns: repeat(1, 1fr);

    }

    .modal-cantidates-loop {
        margin-bottom: 25px;
    }

    .modal-video-material-mobile {
        display: block;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .modal-video-material-desktop {
        display: none;
    }

    .voting-modal-inside {

        padding: 50px 25px;
    }

    .voting-modal-inside .modal-buttons-wrapper {
        flex-direction: column;
    }

    .voting-modal-inside .modal-buttons-wrapper .btn-wrapper {
        justify-content: center;
    }

    .voting-modal-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

    .close-voting-modal {
        right: 20px;
        top: 20px;
    }
}


.single-step .single-step-title {
    text-align: center;
    font-weight: 400;
}

/* Step instagram */


.single-step .instagram-button-wrapper {
    margin: 25px auto;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

a.instagram-link {
    padding: 15px 15px 10px;
    font-size: 15px;
    font-weight: 500;
    font-style: italic;
    font-family: 'Roboto', sans-serif;
    color: white;
    background-color: #d2161e;
    border-radius: 5px;
    display: block;
    text-align: center;
}

a.instagram-link .ig-svg {
    max-width: 25px;
    max-height: 25px;
    object-fit: contain;
    fill: white;
}

/* STEP ZGODY */

.consents-wrapper {
    margin: 25px auto;
}

.step-consent .container {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: black;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.step-consent .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.step-consent .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #ffffff;
    border: 1px solid #E10114;
    border-radius: 5px;
}

.step-consent .container:hover input~.checkmark {
    background-color: #ffe6e8;
}

.step-consent .container input:checked~.checkmark {
    background-color: #E10114;
}

.step-consent .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.step-consent .container input:checked~.checkmark:after {
    display: block;
}

.step-consent .container .checkmark:after {
    left: 4.5px;
    top: 3px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Step kontakt */

.contact-input-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 35px;
    margin-bottom: 35px;
}

.contact-input-wrapper input {
    border: 1px solid #CECECE;
    padding: 10px;
    outline: none;
    transition: all 0.2s;
    font-size: 16px;
    line-height: 20px;
    color: black;
    border-radius: 10px;
}

.contact-input-wrapper input:focus {

    border-color: #E10114;

}

.contact-input-wrapper input:hover {
    border-color: #E10114;
}

.modal-box a {
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    color: black;
    display: block;
    margin: 35px auto 0;
    text-align: center;

}

.strong-link {
    color: #E10114;
    font-weight: 600;
    text-decoration: underline;
}


@media only screen and (max-width: 850px) {
    .contact-input-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* MODAL VIDEO */


/* --- Modal domyślnie ukryty --- */
.video-modal-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* --- Po dodaniu .active modal jest widoczny --- */
.video-modal-wrapper.active {
    display: flex;
}

/* --- Styl iframe w modalu --- */
.video-modal-wrapper iframe {
    max-width: 1200px;
    max-height: 90%;
    /* height: 100%; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    min-height: 500px;
}



.close-video-modal {
    position: absolute;
    right: 35px;
    top: 35px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: transparent;
    border: 1px solid #CECECE;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-video-modal svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: #CECECE;
}


@media only screen and (max-width: 768px) {
    .video-modal-wrapper iframe {
        min-height: 300px;
    }

    .video-modal-wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }
}


/* LOGIN PAGE */
.section-login {
    margin-top: 200px;
}

.login-form {
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    border-radius: 60px;
    padding: 60px;
}

.login-form h1 {
    margin: 0px;
    margin-bottom: 35px;
    font-weight: 400;
    text-align: center;
}


.login-form form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.login-form .btn-wrapper {
    justify-content: center;
    margin-top: 35px;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    border: 1px solid #CECECE;
    padding: 10px;
    outline: none;
    transition: all 0.2s;
    font-size: 16px;
    line-height: 20px;
    color: black;
    border-radius: 10px;
}

.login-form input[type="text"]:hover,
.login-form input[type="password"]:hover {
    border-color: #E10114;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    border-color: #E10114;
}



.bukmacher-info {
    text-align: center;
    border-top: 1px solid #CCCCCC;
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    color: black;
}