*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: sedsina;
    src: url("./../assests/BYekan/BYekan+.ttf");
  }

body{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sedsina;
    height: 100vh;
}

.form{
    -webkit-box-shadow: 8px 0px 88px -24px rgba(0,0,0,0.34);
    -moz-box-shadow: 8px 0px 88px -24px rgba(0,0,0,0.34);
    box-shadow: 8px 0px 88px -24px rgba(0,0,0,0.34);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    background-color: #FFF;
    min-width: 542px;
    min-height: 493px;
    padding: 2rem;
    border-radius: 16px;
    justify-content: space-between;
}

.title-login{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    
}

.input-name{
    display: flex;
    width: 100%;
    gap: 0.2rem;
}
.input-name input{
    background-color: rgba(220, 220, 220, 0.3);
    font-family: sedsina;
    width: 95%;
    height: 50px;
    outline: none;
    border: none;
    font-size: 1.4rem;
    padding: 1rem;
    border-radius: 8px;
}

.input-checkbox{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1rem;
    font-size: 1.4rem;
}


.input-checkbox input{
    width: 20px;
    height: 20px;
    border-color: #2850C8;
}

.input-button{
    
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.input-button button{
    background-color: #2850C8;
    width: 137px;
    font-family: sedsina;
    height: 54px;
    color: #FFF;
    outline: none;
    border: none;
    font-size: 1.5rem;
    border-radius: 15px;
    cursor: pointer;

}

.remember-password{
    text-align: center;
    font-size: 1.5rem;
}


a{
    color: #1C548C;
    text-decoration: none;
}

