body{
    background-color: rgb(51,54,69,255);;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.header{
    text-align: center;
    color: rgb(173, 155, 53);
    background-color: rgb(173, 155, 53);
}

.menu{
    padding: 0;
    text-align: center;

}

.menu ul{
    list-style-type: none;
    background-color: rgb(51,54,69,255);;
    padding: 0;

}

.menu ul li{
    display: inline-block;
    padding: 15px;
    margin: 0;
    border-right: 2px solid rgb(27,25,24,255);
}

.menu ul li a{
    text-decoration: none;
    color: rgb(27,25,24,255);
    display: block;
    font-size: 20px;
    text-align: center;
    
}

.menu ul li:hover{
    background-color: rgb(173, 155, 53);
    transition: 250ms;
}

.formicek{
    margin-top: 5%;
    display: flex;
    text-align: center;
}
.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 350px;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    background-color: #1a1a1a;
    color: rgb(173, 155, 53);
    border: 1px solid #333;
  }
  
  .title {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
    color: rgb(173, 155, 53);
  }
  
  .title::before {
    width: 18px;
    height: 18px;
  }
  
  .title::after {
    width: 18px;
    height: 18px;
  }
  
  .title::before,
  .title::after {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 0px;
    background-color: rgb(173, 155, 53);
  }
  
  .signin {
    font-size: 14.5px;
    color: rgb(173, 155, 53);
  }
  
  .signin {
    text-align: center;
  }
  
  .signin a:hover {
    text-decoration: underline rgb(173, 155, 53);
  }
  
  .signin a {
    color: rgb(173, 155, 53);
  }
  
  .flex {
    display: flex;
    width: 100%;
    gap: 6px;
  }
  
  .form label {
    position: relative;
  }
  
  .form label .input {
    background-color: rgb(51,54,69,255);
    color: rgb(173, 155, 53);
    width: 90%;
    padding: 20px 05px 05px 10px;
    outline: 0;
    border: 1px solid rgb(51,54,69,255);
    border-radius: 10px;
  }
  
  .form label .input + span {
    color: rgb(173, 155, 53);
    position: absolute;
    left: 10px;
    top: 0px;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
  }
  
  .form label .input:placeholder-shown + span {
    top: 12.5px;
    font-size: 0.9em;
  }
  
  .form label .input:focus + span,
  .form label .input:valid + span {
    color: rgb(173, 155, 53);
    top: 0px;
    font-size: 0.7em;
    font-weight: 600;
  }
  
  .input {
    font-size: medium;
  }
  
  .submit {
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 10px;
    color: rgb(51,54,69,255);
    font-size: 16px;
    transform: .3s ease;
    background-color: rgb(173, 155, 53);
  }
  
  .submit:hover {
    background-color: rgb(173, 155, 53);
  }

.cpy{
    text-align: center;
    background-color: rgb(173, 155, 53);
    padding: 20px;
    font-size: 15px;
    font-weight: bold;
    width:auto;
    color: rgb(27,25,24,255);
    margin-top: 5%;
}

.form-container{
text-align: center;
}