@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&family=Poppins:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(120deg, #2980b9, #8e44ad, #219ba3be,#8510e4);
  height: 100vh;
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  align-items: center;     
  overflow: hidden;
  animation: color 12s ease-in-out infinite;
}

@keyframes color{
    0%{
        background-position: 0 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0 50%;
    }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px  20px; 
  background-color: #333;
  color: white;
  width: 100%;
  box-sizing: border-box;
  margin: 0; 
  position: fixed; 
  top: 0; 
  left: 0;
  z-index: 100; 
}

#data_czas {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.czas, .data {
  font-size: 14px;
  font-weight: bold;
}

#Wyniki, #Kontakt, #admin {
  margin: 0 25px;
}

#Wyniki a, #Kontakt, #admin {
  color: white;
  text-decoration: none;
  font-size: 18px; 
  font-weight: bold;
  padding: 10px 20px; 
  border-radius: 12px; 
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

#Wyniki a:hover, #Kontakt:hover {
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 0.9;
}

#Organizator {
  text-align: center;
  align-items: center;
  flex-grow: 1;
}

#Organizator h3 {
  margin: 0;
  font-size: 18px;
}

#Organizator h4 {
  margin: 0;
  font-size: 16px;
}

#formularz {
  background-color: #222;
  border-radius: 10px;
  padding: 40px; 
  width: 120%; 
  max-width: none; 
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
  margin: 25px -10%;
  margin-top: 70px;
  font-weight: bold;
}



label {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  color: #b5b5b5;
}

input[type="text"],
input[type="password"],
input[type="email"],
select,
button {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 2px solid #444;
  border-radius: 5px;
  background-color: #333;
  color: white;
  font-size: 16px;
  text-transform: capitalize;
}

input[type="text"]:focus,
input[type="password"]:focus,
select:focus,
button:focus {
  outline: none;
  border-color: #00bcd4;
}

button {
    width: 100%;
    height: 50px;
    background: #2691d9;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease; 
  }

  button:hover {
    background-color: #00bcd4;  
    border-color: #00bcd4;      
    transform: scale(1.05);      
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.5); 
  }

  input[type="radio"] {
    display: inline-block;
    margin-right: 10px; 
  }
  
  label[for="chlopak"], label[for="dziewczyna"] {
    display: inline-block; 
    margin-right: 15px; 
    font-size: 16px;
    color: #b5b5b5;
    cursor: pointer;
  }

button {
  display: block;
  margin-top: 10px;
}

#admin a {
  background-color: #00bcd4;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
}

a {
  color: #00bcd4;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button br {
  display: none;
}
footer{
  color: white;
  text-align: center;
}

