* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.unknown{
    background-color: rgb(219, 168, 16);
  }
  .navigation{
    margin-top: 0;
    position: sticky;
    top: 0;
    background-color: black;
  }
  .navbar{
    padding-top: 30px;
    margin-top: 0px;
    float: left;
    font-size: 25px;
    color: white;
    text-align: center;
    padding: 14px 16px;
  }
  
  .navbar a:hover{
    background-color: rgb(219, 168, 16);
  }
  nav{
    width:100%;
    height: 9vh;
    background: rgba(0,0,0,0.);
    border-bottom: 1px solid #f9fd00;
    color: whitesmoke;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}
.logo{
   margin-left: 2.5%;
  }
  nav .menu{
    left: 70%;
    width: 50%;
    top: 80%;
    font-size: 32px;
    color: white;
    display: inline-flex;
    justify-content: left;
    align-items: center;
}
nav .menu a{
    width: 10%;
    padding: 3px 6px;
    margin: 32px;
    text-decoration: none;
    color: white;
}
nav .menu a:hover{
    display: inline;
    width: 10%;
    padding: auto;
    margin: 32px;
    text-decoration: none;
    color: blue;
}
a {
    display: inline-block;
    background: #03a9f4;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bolder;
    padding: 15px 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    text-decoration: none;
    letter-spacing: 1px;
    background: #f9fd00;
    color: black;
}
a:hover {
    color: blue;
  }
body {
	background-color: #2abdd7;
	color: #fff;
	font-family: Arial, sans-serif;
}
/* Container fix */
.container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../../assets/images/a.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 80px; /* prevents leaking over navbar */
}

/* Form Box */
.content-box {
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 12px;
  width: 420px;
  text-align: center;
  color: white;
}

/* Title */
.content-box h2 {
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: bold;
}

/* Inputs */
input {
  width: 100%;
  padding: 12px;
  margin: 12px 0;
  border: none;
  border-radius: 25px;
  font-size: 16px;
}

input:focus {
  outline: 1px solid #ff4c68;
}

/* Yellow Button (consistent) */
button {
  width: 100%;
  padding: 12px;
  margin-top: 20px;
  border-radius: 25px;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: bold;
  background: #f9fd00;  /* consistent yellow */
  color: black;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  color: white;
  background-color: #ff4c68;
}

/* Divider */
hr {
  margin: 20px 0;
  border: 0.5px solid #ccc;
}

/* Already account text */
.options {
  margin-top: 10px;
  font-size: 14px;
}

.content-box a {
  color: #ff4c68;
  text-decoration: none;
  font-weight: bold;
}

.content-box a:hover {
  text-decoration: underline;
}

/* Social login icons */
.social-login {
  margin-top: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px; /* spacing between icons */
  margin-top: 10px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: black;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #f9fd00;
  color: blue;
}
