@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
html,body{
    /* overflow-x: hidden; */

}
.nav{
        height: 3.6rem;
    width: 100%;
    border-bottom: 1px solid #dbe2ea;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3.3rem;

}
.logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo span{
    font-weight: 800;
    letter-spacing: 0.4px;
    font-size: 21px;
    color: #07A5ED;

}
.o{
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
        height: 43px;
    width: 45px;
    margin-right: 9px;
    background-color: #07A5ED;
    color: white;
}
.o span{
    color: white;
}
.nav_buttons a{
        text-decoration: none;
    margin-right: 2px;
    font-size: 15px;
    color: #64749A;
    letter-spacing: -0.1px;
    margin-right: 7px;
    
}

@keyframes anchor {
  from {color: #64749A;}
  to {color: black;}
}

.nav_buttons a:hover{
    color: black;
    animation-name: anchor;
  animation-duration: 0.4s;
}
@media only screen and (max-width: 450px) {
  .nav{
    padding: 0;
  }
}

.signup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  min-height: 90vh;
}

.signup-box {
  max-width: 450px;
  width: 100%;
  padding: 2rem;
  border: 1px solid #e6e6e6;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  text-align: center;
}

.signup-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: black;
  margin-left: 0.5rem;
}

.highlight {
  color: #07A5ED;
}

.signup-box h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.signup-box p {
  font-size: 0.9rem;
  color: #64749A;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.signup-box form {
  text-align: left;
}

.signup-box label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.3rem;
  margin-top: 1rem;
}

.signup-box input {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
  font-size: 0.875rem;
  font-weight: 400;
}

.signup-box input:focus {
  border: 2px solid #07A5ED;
  outline: none;
}

.signup-box button {
  width: 100%;
  padding: 0.75rem;
  margin-top: 1.5rem;
  border: none;
  border-radius: 0.4rem;
  background-color: #07A5ED;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.signup-box button:hover {
  background-color: #079ad7;
}

@media (max-width: 500px) {
  .signup-box {
    padding: 1.5rem 1rem;
  }
}
.password-field {
  position: relative;
  display: flex;
  align-items: center;
}

.password-field input {
  width: 100%;
}

.password-field i {
  position: absolute;
  right: 0.75rem;
  cursor: pointer;
  color: #64749A;
  font-size: 1rem;
}

.password-field i:hover {
  color: #07A5ED;
}
.create-account-btn {
  background-color: #07A5ED;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 0.4rem;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.create-account-btn:hover {
  background-color: #028cd1;
}
