*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    
    
}

h6{
    color:black;
    font-size: 20px;

}
.close-button{
    position: absolute;
    top: 10px;
    right: 20px;
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;

}

.form_signin{
    border: 2px solid #808587;
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    backdrop-filter: blur(5px);
    width: 400px;
    height: 500px;
    line-height: 1.5em;
       
}

p{
    color:#7d7d7d;
    font-size: 14px;
    padding-bottom: 20px;
}

a{
    text-decoration: none;
}
form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    row-gap: 0.5em;
}
input{
    padding:10px;
    border-radius: 10px;
    border: 1px solid #808587;
    background-color: transparent;
}
input::placeholder{
    color: #808587;
    font-size: 10px;
    }
form a{
    font-size:12px;
}
#submit{
    background-color: rgb(15, 90, 15);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}
#submit:hover{
    background-color: rgb(15, 90, 15, 0.8);
}
.social_media {
    display: flex;
    justify-content: center;
    align-items: center;  /* aligns icon and text vertically center */
    gap: 10px;            /* space between icon and text */
    padding: 10px;
    border: 1px solid #808587;
    border-radius: 10px;
    background-color:ghostwhite;
    cursor: pointer;
    font-size: 14px;
    width:100%;
}
.social_media:hover{
    background-color: rgba(18, 213, 18, 0.8);
    color: white;
}

#continue_facebook {
    margin-top: 10px; /* or any value you prefer */
}


.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
  }

  .divider::before,
  .divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #c5bfbf;
  }

  .divider:not(:empty)::before {
    margin-right: 0.5em;
  }

  .divider:not(:empty)::after {
    margin-left: 0.5em;
  }