/*================================================
                        __
 _    ___    ___    __ / /____  __ _ ___ _______   ___  _______
| |/|/ | |/|/ | |/|/ _/ __/ _ \/  ' / _ `(_-/_ /_ / _ \/ __/ _ \
|__,__/|__,__/|__,__(_\__/\___/_/_/_\_,_/___/__(_/ .__/_/  \___/
                                                /_/
style.css by www.tomasz.pro 2023-2025

/*================================================*/

@font-face {
    font-family: 'HemiHead';
    src: url('/fonts/HemiHead/Hemi Head Bd It.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/*font-family: 'HemiHead', sans-serif;*/

/*======================*/
/*domyślne*/
/*======================*/

/*rozmiary*/
a, p, li, label, table, .console-line {
    font-size: 18px;
}
@media only screen and (max-width: 1000px) {
    a, p, li, label, table, .console-line {
        font-size: 26px;
    }
}
h1 { font-size: 32px; }
@media only screen and (max-width: 1000px) {
    h1 { font-size: 50px; }
}
h2 {font-size: 24px;}
@media only screen and (max-width: 1000px) {
    h2 { font-size: 34px; }
}
h3 { font-size: 21px; }
@media only screen and (max-width: 1000px) {
    h3 { font-size: 35px; }
}
small { font-size: 12px; }
@media only screen and (max-width: 1000px) {
    small { font-size: 14px; }
}
/*kolory*/
a { color: #2BACE2; }

/*======================*/
/*domyślna tabela*/
/*======================*/
table {
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    /*table-layout: fixed; !* wymusza sztywne kolumny *!*/
    text-align: center;
}
td, th {
    /*word-wrap: break-word;*/
    /*word-break: break-word;*/
    /*white-space: normal;*/
}
td {
    padding: 4px;
}
th {
    padding: 8px;
    color: lightgray;
    background-color: transparent;
}
tbody tr:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.1);
    color: lightgray;
}
tbody tr:nth-child(even) {
    background-color: transparent;
    color: lightgray;
}
/*================================================*/
footer, footer p, footer li, footer a{
    font-size: 13px;
}
@media (max-width: 1000px) {
    footer, footer p, footer li, footer a{
        font-size: 12px;
    }
}
main footer h3 {
    text-align: start;
    font-family: Arial, sans-serif;
    padding: 2px 0;
    color: gray;
    font-size: 14px;
    text-shadow: unset;
}
/*================================================*/
/*  mainHeader*/
/*================================================*/
section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;

    display: flex;
    justify-content: center;
    border-radius: 10px;
    width: 1000px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    align-items: start;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    margin: 10px;

    text-shadow:
            -1px -1px 0 #000, /* Lewy górny */
            1px -1px 0 #000,  /* Prawy górny */
            -1px 1px 0 #000,  /* Lewy dolny */
            1px 1px 0 #000;   /* Prawy dolny */
}
.block{
    display: block;
    justify-items: center;
}

section p,
section ul {
    margin-bottom: 20px;
    justify-items: center;
    text-align: center;
}

@media only screen and (max-width: 1000px) {
    section {
        width: 96%;
        align-items: center;
        flex-direction: column;
    }
}
section .image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin: 20px;*/
    margin: 5px;
}
section .image img {
    width: 240px;
    object-fit: cover;
    border-radius: 10px;
}
@media only screen and (max-width: 1000px) {
    section .image img {
        width: 200px;
    }
}
section .content {
    flex: 2;
    padding: 30px;
    text-align: start;
    width: 100%;
}
section .content h1 {
    font-family: 'HemiHead', sans-serif;
    font-weight: bold;
    margin-bottom: 10px;

    color: #ccc;
}
section .content h2 {
    color: #bbb;
}
section .content h3 {
    color: #aaa;
}
section .content p {
    line-height: 1.25;
    color: lightgray;
    text-align: center;
}
section .content li {
    color: lightgray;
}
@media only screen and (max-width: 1000px) {
    section .image {
        order: -1; /* Przesuwa obraz na początek */
    }
    section .content {
        padding: 5px;
        width: 90%;
    }
    section .content p {
        line-height: unset;
    }
}
/*linki do about*/
section .social-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 10px;
}
@media only screen and (max-width: 1000px) {
    section .social-links {
        gap: 80px;
    }
}

.social-links .social-link,
.social-links .social-link-toCopy {
    color: white;
}
.social-link,
.social-link-toCopy {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s;
    flex-direction: column;
    white-space: nowrap;
    text-decoration: none;
    color: white;
}
@media only screen and (max-width: 1000px) {
    section .social-links {
        padding: 15px;
    }
    section .social-link,
    section .social-link-toCopy {
        width: 50px;
        height: 60px;
    }
}
.social-link:hover,
.social-link-toCopy:hover,
footer .social-link:hover {
    transform: scale(1.1);
}
.social-link img,
.social-link-toCopy img {
    height: 100%;
    margin: 4px;
}
/*================================================*/
/*informacja*/
/*================================================*/
.notify-info,
.notify-error,
.notify-success {
    display: unset;
    padding: 15px;
    background-color: rgba(10, 30, 60, 0.5);
    border-radius: 8px;
    border-left: 4px solid #4a9cff;
    width: 1000px;
    text-align: start;
}
.notify-error {
    border-left: 4px solid #ff4a4a;
    background-color: rgba(60, 10, 17, 0.5);
}
.notify-success {
    border-left: 4px solid #4aff71;
    background-color: rgba(10, 60, 18, 0.5);
}
@media only screen and (max-width: 1000px) {
    .notify-info,
    .notify-error,
    .notify-success {
        width: 96%;
    }
}
.notify-info h3,
.notify-error h3,
.notify-success h3 {
    color: #4a9cff;
    margin-top: 0;
    margin-bottom: 3px;
    text-align: start;
    font-family: Arial, sans-serif;
    padding: 0;
    font-size: 21px;
}
@media only screen and (max-width: 1000px) {
    .notify-info h3,
    .notify-error h3,
    .notify-success h3 {
        text-shadow: unset;
        font-size: 26px;
    }
}

.notify-error h3 { color: #ff4a4a; }
.notify-success h3 { color: #4aff71; }

.notify-info p,
.notify-error p,
.notify-success p {
    color: #bbbbbb;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 3px;
}

.notify-info small,
.notify-error small,
.notify-success small {
    color: #bbbbbb;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 3px;
}

.notify-info a,
.notify-error a,
.notify-success a {
    color: #4a9cff;
    text-decoration: none;
}
.notify-error a { color: #ff4a4a; }
.notify-success a { color: #4aff71; }

.notify-info a:hover,
.notify-error a:hover,
.notify-success a:hover {
    color: #ffffff;
}
/*================================================*/
/*wylaczenie podpunktów w listach*/
/*================================================*/
ul {
    list-style: none;
    line-height: 1.25;
}
/*================================================*/
/*głowna*/
/*================================================*/
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    border-radius: 30px;
}
.hero-section img {
    width: 150px;
    object-fit: cover;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    margin-bottom: 10px;
}

.cta-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.buttonPrimary {
    background-color: #ff6b6b;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.buttonPrimary:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
}

.buttonSecondary {
    background-color: transparent;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    border: 2px solid white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.buttonSecondary:hover {
    background-color: rgba(255,255,255,0.1);
}

.features-section {
    padding: 40px 20px;
    text-align: center;
}

.features-section h2 {
    margin-bottom: 30px;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-card {
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.testimonials-section {
    padding: 40px 20px;
    text-align: center;
}

.testimonials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.testimonial {
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 350px;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.pricing-section {
    padding: 40px 20px;
    text-align: center;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.pricing-card {
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 220px;
    position: relative;
}

.pricing-card.featured {
    border: 3px solid #6e8efb;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #6e8efb;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 8px;
    font-weight: bold;
}

.price {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}

footer {
    display: flex;
    padding: 5px 25px;
    background-color: rgba(30, 30, 30);
    WHITE-SPACE: NOWRAP;
}

footer p, footer li a {
    color: gray;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section li a, .footer-bottom a {
    color: gray;
    text-decoration: none;
    transition: text-decoration 0.2s ease, color 0.2s ease;
}

.footer-section li a:hover, .footer-bottom a:hover {
    color: #ffffff;
}

footer .social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

footer .social-links img {
    width: 30px;
    height: 30px;
}

.partners img {
    height: 35px;
    margin-right: 10px;
    margin-top: 10px;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 1000px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        margin-top: 20px;
    }

    .cta-buttons {
        justify-content: center;
    }
}
/*================================================*/
.checkBox {
    /*wysrodkowany div*/
    /*display: inline;*/
    align-items: center;
    gap: 6px;
    width: 100%;
    margin-bottom: 20px;
}
/*================================================*/
/*  konto*/
/*================================================*/
.account {
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    width: 850px;
    padding: 20px;
    background: transparent;
    border: black 1px;
    transition: transform 0.2s ease-in-out;
    margin: 10px;
    text-align: center;
}
@media only screen and (max-width: 1000px) {
    .account {
        width: 100%;
    }
}
.account p {
    margin: 10px;
}
.account input {
    margin: 5px;
}
#changePassword{
    display: grid;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
}
/* Awatar użytkownika */
#avatar-container {

}
#user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.48);
}
#data-container {
    text-align: start;
}
/* Status weryfikacji */
.verified {
    color: green;
    font-weight: bold;
    font-size: 10px;
}
.not-verified {
    color: red;
    font-weight: bold;
    font-size: 10px;
}
/*Panel Mobilny*/
.mobilePanel {
    display: none;
}
@media only screen and (max-width: 1000px) {
    .mobilePanel {
        display: block;
    }
}

/*================================================*/
/*formularz domyślny*/
/*================================================*/

form {
    display: grid;
    justify-items: center;
}

form div {
    width: 100%;
}

#logged form div {
    width: unset;
    /*Wykluczenie right-panel*/
}

.form-group {
    margin-bottom: 20px;
    text-align: center;
}

.g-recaptcha div {
    width: 100% !important;
    margin-bottom: 5px !important;
}

/*================================================*/
/*================================================*/
.input, .textarea, .form {
    resize: vertical;
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid black;
    border-radius: 8px;
    background-color: rgba(40, 40, 40, 0.7);
    color: white;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.input {
    max-width: 300px;
    justify-self: center;
}
.textarea{
    max-width: 100%;
    min-width: 100%;
    min-height: 100px;
}
.form {
    max-width: 100%;
    min-width: 100%;
}

@media only screen and (max-width: 1000px) {
    .input, .textarea, .form {
        font-size: 26px;
    }
}
.input:focus, .textarea:focus, .form:focus {
    background-color: rgba(95, 94, 94, 0.3);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}
/*================================================*/
/*Powiadomienia*/
/*================================================*/

.alert-danger, .alert-success, .alert-info, .error-message {
    padding: 10px;
    border-radius: 6px;
    margin: 10px;
    text-align: center;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4), -4px -4px 10px rgba(255, 255, 255, 0.1);
    width: 500px;
}
.error-message {
    width: 100%;
}
.alert-danger,
.error-message {
    background: rgba(255, 0, 0, 0.3);
}

.alert-success {
    background: rgba(0, 255, 0, 0.3);
}

.alert-info {
    background: rgba(0, 174, 255, 0.3);
}
/*================================================*/
/*  headline Section */
/*================================================*/
.headline {
    color: #ccc;
    border-bottom: 2px solid black;
    padding: 5px;
    width: 100%;
}
.headline-section {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}
.headline-section li {
    margin: 10px 5px;
    color: gray;
}
/*================================================*/
/*  Menu Section */
/*================================================*/
.menu h2 {
    color: #ccc;
    border-bottom: 2px solid #000;
    padding: 5px;
    margin: 10px 0;
}
.menu-section {
    list-style: none;
    padding: 0;
    margin: 0;
    white-space: nowrap;
}
.menu-section li {
    margin: 10px 0;
    color: gray;
}
.menu-section .buttonBlue {
    padding: 0;
    margin: 0;
}
/*================================================*/
/*  Menu Table*/
/*================================================*/
.menu-table{
    box-shadow: unset;
    margin-bottom: unset;
    width: unset;
    text-align: left;
}
.menu-table td {
    padding: 4px;
    color: gray;
}
.menu-table th {
    padding: 8px;
}
.menu-table tr:nth-child(even) {
    background-color: unset;
}
.menu-table tr:nth-child(odd) {
    background-color: unset;
}
.menu-table h2 {
    justify-content: unset;
}
@media only screen and (max-width: 1000px) {
    .menu-table li, .menu-table li:hover,
    .menu-table a, .menu-table a:hover
    {
        font-size: 32px;
    }
}
/*================================================*/
/* Formularz kontaktowy */
/*================================================*/
.contactForm {
    border: 1px solid rgba(80, 80, 80);
    border-radius: 10px;
    padding: 10px;
    margin: 10px 0;
    height: max-content;
    width: 100%;
}
.contactForm label {
    display: inline-block;
    margin-bottom: 5px;
    margin-right: 10px;
}
.contactForm textarea,
.contactForm input[type="text"],
.contactForm input[type="password"],
.contactForm input[type="number"],
.contactForm input[type="file"],
.contactForm select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: clamp(6px, 10px, 12px);
}
.contactForm textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 80px;
}
.contactForm input[type="checkbox"] {
    display: inline-block;
    margin: 10px 0 0 0;
    width: auto;
}
.contactForm .checkBox {
    white-space: nowrap;
}
.contactForm input[type="file"] {
    padding: 4px 0;
}
.contactForm .buttonBlue,
.contactForm .buttonBlue:disabled {
    margin: 5px 0;
}
.contactForm #priceLabel {
    margin-top: 21px
}
@media only screen and (max-width: 1000px) {
    .contactForm textarea,
    .contactForm input[type="text"],
    .contactForm input[type="password"],
    .contactForm input[type="number"],
    .contactForm input[type="file"],
    .contactForm select{
        font-size: 20px;
    }
    .contactForm textarea {
        min-height: 230px;
    }
}
/*================================================*/
/*  Logo*/
/*================================================*/
.logoPanel {
    display: flex;
    flex-direction: row;
}
.logoPanel div a {
    text-decoration: none;
}
#logo {
    font-size: 40px;
    font-family: 'HemiHead', sans-serif;
    font-weight: bold;
    font-style: normal;
    color: #ffffff;
    text-shadow: 3px 3px 5px #000000;
    text-decoration: none;
    margin: 0px 15px 0 20px;
    white-space: nowrap;
}
#logo:hover {
    color: #aaaaaa;
}
#logoImg {
    height: 2px;
    margin: 10px 10px 10px 0;
}
@media only screen and (max-width: 1000px) {
    #logo, #logoImg {
        margin: 0;
        font-size: 65px;
    }
}
/*================================================*/
/*header*/
/*================================================*/
.inputHeader {
    background: rgb(29, 29, 29);
    color: #2BACE2;
    border: none;
}
.left-content, .right-content {
    display: flex;
    align-items: center;
}
.right-content {
    margin-left: auto;
}
.left-content div, .right-content div {
    margin: 0;
}
.navigation-buttons, .navigation-buttons-footer {
    display: flex;
    flex-direction: row;
}
.navigation-buttons .buttonBlue.active {
    color: silver !important;
}
.navigation-buttons .buttonBlue.premium {
    color: gold !important;
}

/*Login Header*/
#notLogged, #logged, #notLogged form div{
    display: grid;
    justify-content: center;
    align-items: center;
}
#notLogged form, #logged form {
    display: flex;
    flex-direction: row;
}
@media only screen and (max-width: 1000px) {
    .left-content, .right-content {
        flex-direction: column;
        align-items: start;
    }
    .left-content div, .right-content div {
        margin: 3px;
    }
    .right-content {
        display: none;
    }
    .navigation-buttons {
        margin: 0;
    }
}
/*================================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    flex-direction: column;
}
body, html {
    margin: 0;
    padding: 0;
    color: rgb(255, 255, 255);
    font-family: Arial, sans-serif;
    height: 100vh; /* Ustawia wysokość dokładnie na wysokość widoku przeglądarki */
    overflow: hidden; /* Ukrywa wszelkie elementy wychodzące poza widok */
}
header {
    flex-shrink: 0; /* Zabezpiecza przed zmniejszaniem nagłówka */
    height: auto; /* Automatyczne dopasowanie wysokości */
    background-color: rgba(30, 30, 30, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(7px, 10xp, 16px);
    padding: 10px 0;
}
main {
    flex-grow: 1; /* Wypełnia pozostałą przestrzeń */
    display: flex;
    overflow-y: scroll;
    flex-direction: column;

}
@media only screen and (max-width: 1000px) {
    html, body {
        height: 100%;
    }
    header {
        height: auto;
        flex-direction: column;
        justify-content: flex-start;
    }
    main {
        height: max-content;
        flex-direction: column;
    }
}
/*================================================*/
.side-content {
    width: 10%;
    background-color: transparent;
}
.main-content {
    width: 80%;
    background-color: transparent;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}
@media only screen and (max-width: 1000px) {
    .side-content {
        width: 100%;
        height: 0%;
    }
    .main-content {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
}
/*================================================*/
/*  Wnetrze main*/
/*================================================*/
#window {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: transparent;
    height: 100%;
    overflow: hidden;
}
main h1, main h2, main h3 {
    font-family: 'HemiHead', sans-serif;
    color: #eee;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    text-align: center;
    font-weight: bold;
    padding: 5px;
}
/*================================================*/
#Panel, #PanelCenter {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    flex-grow: 1;
}
#PanelCenter {
    text-align: center;
}
/*Regulamin*/
#regulaminPanel {
    padding: 10px;
    width: 100%;
    text-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#page-regulamin, #page-polityka {
    white-space: pre-line;
}

/*================================================*/
/*  Przyciski*/
/*================================================*/
header .buttonBlue,
header .buttonDiscord,
header .buttonPink,
header .buttonBlueMobile,
header .buttonPinkMobile,
header .buttonBlue,
header #nickname {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 15px;
}

.buttonBlue,
.buttonGreen,
.buttonRed,
.buttonDiscord,
.buttonPink,
.buttonBlueMobile,
.buttonPinkMobile,
.buttonBlue:disabled,
#nickname {
    position: static;
    display: inline-block;
    padding: 3px;
    margin: 5px;
    color: #2BACE2;
    text-decoration: none;
    overflow: hidden;
    transition: 0.5s;
    cursor: pointer;
    background-color: transparent;
    outline: none;
    white-space: nowrap;
    border: none;
    font-size: 18px;

    text-shadow:
            -1px -1px 0 #000, /* Lewy górny */
            1px -1px 0 #000,  /* Prawy górny */
            -1px 1px 0 #000,  /* Lewy dolny */
            1px 1px 0 #000;   /* Prawy dolny */
}
.buttonBlueMobile, .buttonPinkMobile { display: none; }
.buttonBlue:disabled { color: #969696; cursor: not-allowed; }
.buttonGreen { color: #00ff39; }
.buttonRed { color: #ff0000; }
.buttonDiscord { color: rgb(114, 137, 218); }
.buttonPink { color: #ff006a; }
#nickname { color: silver }

.buttonBlue:hover,
.buttonBlueMobile:hover {
    color: #ffffff;
    filter: drop-shadow(0 0 5px #2BACE2)
    drop-shadow(0 0 25px #2BACE2)
    drop-shadow(0 0 50px #2BACE2)
    drop-shadow(0 0 200px #2BACE2);
}
.buttonBlue:disabled:hover {
    color: #000000;
    filter: drop-shadow(0 0 5px #969696)
    drop-shadow(0 0 25px #969696)
    drop-shadow(0 0 50px #969696)
    drop-shadow(0 0 200px #969696);
}
.buttonGreen:hover {
    color: #ffffff;
    filter: drop-shadow(0 0 5px #00ff39)
    drop-shadow(0 0 25px #00ff39)
    drop-shadow(0 0 50px #00ff39)
    drop-shadow(0 0 200px #00ff39);
}
.buttonRed:hover {
    color: #ffffff;
    filter: drop-shadow(0 0 5px #ff0000)
    drop-shadow(0 0 25px #ff0000)
    drop-shadow(0 0 50px #ff0000)
    drop-shadow(0 0 200px #ff0000);
}
.buttonDiscord:hover {
    color: #ffffff;
    filter: drop-shadow(0 0 5px rgb(114, 137, 218))
    drop-shadow(0 0 25px rgb(114, 137, 218))
    drop-shadow(0 0 50px rgb(114, 137, 218))
    drop-shadow(0 0 200px rgb(114, 137, 218));
}
.buttonPink:hover
.buttonPinkMobile:hover {
    color: #ffffff;
    filter: drop-shadow(0 0 5px #ff006a)
    drop-shadow(0 0 25px #ff006a)
    drop-shadow(0 0 50px #ff006a)
    drop-shadow(0 0 200px #ff006a);
}
@media only screen and (max-width: 1000px) {
    .buttonBlue,
    .buttonBlue:hover,
    .buttonBlue:disabled,
    .buttonRed,
    .buttonGreen,
    .buttonDiscord,
    .buttonDiscord:hover,
    .buttonPink,
    .buttonPink:hover,
    .buttonBlueMobile,
    .buttonBlueMobile:hover,
    .buttonPinkMobile,
    .buttonPinkMobile:hover{
        font-size: 26px;
    }
    header .buttonBlue,
    header .buttonBlue:hover,
    header .buttonBlue:disabled,
    header .buttonRed,
    header .buttonGreen,
    header .buttonDiscord,
    header .buttonDiscord:hover,
    header .buttonPink,
    header .buttonPink:hover,
    header .buttonBlueMobile,
    header .buttonBlueMobile:hover,
    header .buttonPinkMobile,
    header .buttonPinkMobile:hover {
        font-size: 21px;
        margin: 5px;
    }
    .buttonBlueMobile,
    .buttonPinkMobile {
        display: block;
    }
}
/*================================================*/
/* Przycisk w tekscie */
/*================================================*/
.textLink {
    text-decoration: none;
    color: #2BACE2;
}

.grecaptcha-badge {
    margin-bottom: 125px;
}


/*Formularz rejestracji i logowania*/

.checkbox-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-group {
    /*display: flex;*/
    align-items: center;
    margin: 0 0 20px 5px;
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-group input {
    margin-right: 10px;
}

/*================================================
                        __
 _    ___    ___    __ / /____  __ _ ___ _______   ___  _______
| |/|/ | |/|/ | |/|/ _/ __/ _ \/  ' / _ `(_-/_ /_ / _ \/ __/ _ \
|__,__/|__,__/|__,__(_\__/\___/_/_/_\_,_/___/__(_/ .__/_/  \___/
                                                /_/
style.css by www.tomasz.pro 2023-2025

/*================================================*/