* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: white;
}

body {
    background: #515066;
background: radial-gradient(circle,rgba(81, 80, 102, 1) 0%, rgba(39, 37, 55, 1) 43%);
    font-family: Verdana, Tahoma;
}

.top-header {
    height: 100px;
    left: 0;
    top: 0;
    position: absolute;
    display: flex;
    align-items: center;
    background-color: rgb(36, 34, 49);
    width: 100%;
    z-index: 6;
}

.left {
    width: 20%;
    height: 100px;
    display: flex;
    align-items: center;
}

.header-left {
    margin-left: 10px;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background-color: #8C00FF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-left img {
    width: 55px;
    height: 55px;
    margin-left: -2px;
    cursor: pointer;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: start;
    height: 100px;
    width: 5%;
}

.header-center {
    width: 65%;
    height: 100px;
    align-items: center;
    display: flex;
    justify-content: end;
}

.mobile-btn {
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    background-color: transparent;
    border: none;
    gap: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-btn span {
    width: 35px; /* pełna szerokość */
    height: 5px;
    background-color: white;
    border-radius: 5px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
}
.log-in {
    font-size: 15px;
    float: right;
    text-align: center;
    margin-right: 10px;
}

.mobile-nav-container {
    display: none;
}

ul {
    list-style: none;
}

.mobile-nav-container.active {
    position: absolute;
    z-index: 5;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    width: 250px;
    height: 100%;
    background-color: rgb(36, 34, 49);
}

.mobile-link {
    margin-top: 50px;
}

.mobile-link a {
    text-decoration: none;
    font-size: 25px;
}

.open {
    transform: rotate(90deg);
}

.open .hamburger-top {
    transform: rotate(45deg) translate(11px, 8px);
}

.open .hamburger-middle {
    opacity: 0; /* ukrycie środkowego paska */
}

.open .hamburger-bottom {
    transform: rotate(-45deg) translate(10px, -7px);
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.title h1 {
    margin-bottom: 10px;
}

.RegisterBox {
    border: 1px solid white;
    border-radius: 10px;
    width: 250px;
    height: 55px;
    background-color: transparent;
    padding: 10px;
    margin-top: 20px;
}



.RegisterBox::placeholder {
    color: white;
}

.register {
    background: linear-gradient(to bottom right, #3c00bd75, #844bff75, #3c00bd75);
    border: none;
  color: white;
  font-weight: bold;
  padding: 20px;
  border-radius: 16px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(166, 78, 255, 0.3);
  margin-top: 40px;
}

@keyframes gradientAnimation {

}

.logo {
    display: none;
}

.background {
    width: 90%;
    height: 500px;
    background: #8C00FF;
    background: linear-gradient(156deg,rgba(140, 0, 255, 0.75) 0%, rgba(235, 204, 255, 0.75) 54%, rgba(140, 0, 255, 0.75) 100%);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(4.9px);
-webkit-backdrop-filter: blur(4.9px);
border: 1px solid rgba(140, 0, 255, 0.01);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

@media only screen and (min-width: 800px) {
    .header-center {
        width: 70%;
    }

    .RegisterBox {
        width: 300px;
    }

    .background {
        flex-direction: row;
        width: 750px;
    }

    .title {
        width: 50%;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .login-inputs {
        width: 50%;
    }

    .logo {
        display: block;
        width: 180px;
    }

    
}

@media only screen and (min-width: 1500px) {
    .header-center {
        width: 80%;
    }

    .background {
        width: 900px;
    }


}


