* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
body {
  background-color: #1a1c20;
}
.background {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.background::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("https://img.lovepik.com/bg/20231216/an-image-of-a-clothing-store_2490513_wh860.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  background-color: #343434;
  color: #f0a500;
  box-shadow: 5px 5px 8px #ffb22c;
  border: 2px solid #ffb22c;
  height: 70px;
  padding: 0 20px;
  z-index: 999;
  position: fixed;
  width: 100%;
  top: 0;

}
.name {
  font-size: 1.5rem;
}
.navigation a {
  padding: 5px 10px;
  text-decoration: none;
  font-weight: 800;
  transition: color 0.3s;
  color: #f0a500;
  margin-right: 15px;
  margin-left: 5px;
}
.navigation a:hover {
  color: white;
}
.split-btn-container {
    display: inline-flex;
    border: 2px solid #F0A500;
    border-radius: 6px;
    overflow: hidden;
    margin-left: -5px;
}

.split-btn-part {

    text-decoration: none;
    font-weight: bold;
    background-color: #343434;
    color: #F0A500;
    transition: background-color 0.3s, color 0.3s;
}
.split-btn-part.right {
  margin-left: -20px;
  margin-right: 0px;
}
.split-btn-part.left {
    border-right: 2px solid #F0A500;
    margin-left: -3px;
    margin-right: 20px;
    
}

.split-btn-part:hover {
    background-color: #F0A500;
    color: #343434;
}


/* Login form */
.container {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.reg {
  background-color: #343434;
  color: #f0a500;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px 8px 0 0;
  font-weight: 800;
  font-size: 20px;
  margin: 10px;
  margin-bottom: 0px;
  padding: 20px 25.6%;
  height: 50px;
  margin-top: 60px;
  width: 922px;
}
.Registration {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  background-color: rgba(52, 52, 53, 0.5);
  border-color: #f0a500;
  border-radius: 0 0 8px 8px;
  height: 370px;
  width: 60%;
  margin: 0px auto;
  margin-bottom: 20px;
}
input {
  height: 34px;
  border-radius: 15px;
  margin-top: 10px;
  width: 280px;
  border: 1px solid #f0a500;
  padding-left: 10px;
}
.row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  margin-left: 10px;
  margin-top: 40px;
}
span {
  font-weight: bold;
  font-size: 20px;
  color: #f0a500;
  width: 200px;
}
#error {
  color: red;
  display: none;
  justify-content: center;
  font-weight: bold;
  margin-left: 30%;
}
.btn {
  display: flex;
  justify-content: center;
}
.finish {
  margin: 10px;
  border-radius: 10px;
  padding: 7px;
  font-weight: bold;
  transition: transform 1.02s ease;
  width: 70px;
}
.finish:hover {
  background-color: #343434;
  border-color: #f0a500;
  color: #f0a500;
  box-shadow: 1px 1px 10px #f0a500;
  cursor: pointer;
  transform: scale(1.05);
}
hr {
  margin: 10px;
}
.Sign-in {
  margin: 15px;
  font-weight: bold;
  margin-top: 20px;
}
.login {
  text-decoration: none;
  color: #f0a500;
  font-weight: bold;
  font-size: 18px;
}
.login:hover {
  color: white;
  text-decoration: underline;
}

/* ========================================================================================== */

footer {
    background-color: #343434;
    color: #F0A500;
    padding: 32px 5% 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    padding-bottom: 30px;
} 

.footer-section {
    flex: 1;
    padding: 0 16px;
}

.footer-section h3 {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a:hover{
    text-decoration: underline;
}
.footer-section ul li a{
    color: #F0A500;
    text-decoration: none;
}
.social-icons {
    display: flex;
    gap: 16px;
}
.social-icons a {
    color: #F0A500;
    font-size: 1.2rem;
}
.footer-bottom {
    text-align: center;
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 20px;
}
