.login {
    font-family: "KalamehWebFaNum";
    direction: rtl;
    padding: 16px;
    border-radius: 20px;
    background-color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.login__title {
  font-size: 24px;
  padding-bottom: 8px;
}

.login__input {
    border: none;
    outline: none;
    font-family: "KalamehWebFaNum";
    font-size: 20px;
    padding: 8px;
    border: 2px solid lightgray;
    border-radius: 12px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.login__input:focus {
    border-color: #ff9801;
    border-radius: 4px;
}

.login__btn-submit {
    width: 100%;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 12px;
    background-color: #ff9801;
    color: white;
    margin-top: 8px;
    padding: 8px;
    font-family: "KalamehWebFaNum";
    font-size: 20px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.login__btn-submit:hover {
  border-radius: 4px;
}
/*# sourceMappingURL=login.css.map */