*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.form_login{
    border: 2px solid #808587;
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    backdrop-filter: blur(5px);
    width: 400px;
    height: 500px;
    line-height: 1.5em;
}
h6{
    font-size:1.5em;
    color:#000000;
}
p a{
    text-decoration: none;
    color: #0381fe;
    margin-left: 10px;
}
p{
    font-size:0.8em;
    color: #808587;
}
#close-button{
    position:absolute;
    top:10px;
    right:10px;
    font-size: 1.5em;
    cursor:pointer;
}

form{
    display:flex;
    flex-direction:column;
    row-gap: 0.5em;
    margin-top: 1em;
    font-size: 1.1em;
}
input {
    height: 30px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #808587;
    color: #000; /* Set default text color */
}

input::placeholder {
    color: #808587;
    font-size: 0.8em;
}

form a{
    text-decoration: none;
    color: #0381fe;
    text-align: right;;
    font-size: 0.8em;  
}
#submit{
    background-color: #0381fe;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 20px;
}
#submit:hover{
    background-color: #0368d4;
}
.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;
  }
.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: #0ea61d86;
    color: white;
}
#continue_facebook {
    margin-top: 10px; /* or any value you prefer */
}









input:-webkit-autofill {
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    color: #000 !important;
}
