/* navbar.css */

/*body {
    background-image: url(images/B1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/*NAVBAR CSS*/
body{
    margin: 0;
}
.navbar1
{
padding-bottom: 50px;
position: fixed;
top: 0;
width: 100%;
z-index: 1000; 

}
.navbar {
    background-color: rgb(0, 55, 70);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    justify-content: space-between;
    padding: 15px;
    display: flex;
    align-items: center;
    height: 40px;
   
}

.navbar a {
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-decoration: none;
    position: relative;
}

/* Underline effect for anchor tags */
.navbar .nav-content a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0; /* Initial width */
    height: 2.5px;
    background-color: rgb(255, 255, 255);
    transition: width 0.5s ease, height 0.5s ease;
}

/* Expand underline width on hover for anchor tags */
.navbar .nav-content a:hover::before {
    width: 100%; 
    height: 3px;
}

.navbar .nav-logo {  
    padding-left: 25px;  
}

.navbar .nav-content {
    margin-left: auto;
    padding-right: 20px;
}

.navbar .nav-content a {
    padding: 15px;
}

.navbar .nav-button {
    padding-right: 25px;
}
.navbar .nav-button:hover, .navbar .nav-logo:hover {
    text-shadow: 0 0 20px rgba(234, 234, 234, 0.7); 
}

/*SIGN IN AND SIGNUP*/

/* Style the form container */
/*LOGIN BOX*/
.login {
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(133, 150, 155);
    width: 26%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
    align-items: center;
    margin-left: 535px;
    margin-right: 535px;
    border-radius: 24px;
    padding: 50px;
    margin-top: 150px;
  }
  /*LOGIN ICON*/
  .container .icon-close
  {
      position: absolute;
      top: 0;
      right: 0;
      width: 45px;
      height: 45px;
      background-color: rgb(0, 55, 70);
      font-size: 2em;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 4px;
      cursor: pointer;
      z-index: 1;
  }
  form label {
    margin-bottom: 10px;
    font-weight: bold;
  }
  .ab {
      width: 200px;
      padding: 10px;
      margin-bottom: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      box-shadow: 0 0  2px rgba(18, 19, 19, 0.341);
    }
    /*LOGIN BUTTON*/
.b{
      width: 150px;
      background-color: rgb(0, 55, 70);
     border: none;
      border-radius: 4px;
      cursor: pointer;
      color:rgb(255, 255, 255);
    padding: 13px 30px 13px 30px;
    width: 120px;
    font-size:larger;
    cursor: pointer;
    outline: none;
    border-radius: 10px;
    margin-top: 30px;
    border: none;
    margin-left: 10px;
     }
     /*SIGNUP BUTTON*/
    .bc{
        width: 150px;
        background-color: rgb(0, 55, 70);
       border: none;
        border-radius: 4px;
        cursor: pointer;
        color:rgb(255, 255, 255);
      padding: 13px 30px 13px 25px;
      width: 120px;
      font-size:larger;
      cursor: pointer;
      outline: none;
      border-radius: 10px;
      
    margin-left: 10px;
}

    /*ERROR MSG*/

    .error-message {
      color: red;
      font-size: 14px;
    }
    /*SIGN IN SIGN UP TEXT STYLE*/
    .L
    {
        font-size: 30px;
        color: rgb(0, 55, 70);
        
    }
    /*SIGN UP ICON*/
  
    .contai .icon-close
    {
        position: absolute;
        top: 0;
        right: 0;
        width: 45px;
        height: 45px;
        background-color: rgb(0, 55, 70);
        font-size: 2em;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        cursor: pointer;
        z-index: 1;
    }
    
    h2{
        padding-top: 30px;
    }
    /*SIGN UP BOX*/
    .signup{
        margin-bottom: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(133, 150, 155);
    width: 26%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
    align-items: center;
    margin-left: 535px;
    margin-right: 535px;
    border-radius: 24px;
    padding: 50px;
    margin-top: 130px;

    }
  .cross{
    color: white;
    z-index:2 ;
    position: absolute;
    width: 35px;
    height: 35px;
    top: 4px;
    padding: 2px 2px 2px 2px;
    left: 4px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }  
  
    

 
  