@font-face {
    font-family: "IRANSansX";
    src: url("./font.ttf");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    font-family: "IRANSansX", sans-serif !important;
}


body {
    margin: 0;
    background: #fff;
    color: #111;
}


.app {
    width: 100%;
}


.screen {
    max-width: 430px;
    min-height: 100vh;
    margin: auto;
    padding: 70px 35px;
}


.app-logo {
    width: 100px;
    display: block;
    margin: 0 auto 30px;
}


.screen-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}



.field-input {

    width: 100%;
    min-height: 65px;
    border: 1.5px solid #111;
    border-radius: 15px;
    padding: 15px;
    font-size: 20px;
    margin-bottom: 20px;

    direction: rtl;
    text-align: right;

}


.textarea {
    height: 200px;
}



.menu-button,
.primary-button,
.success-button,
.danger-button {
    width: 100%;
    min-height: 65px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 20px;
}


.menu-button {
    border: 1.5px solid #111;
    color: #111;
}


.primary-button {
    background: #111;
    color: white;
    border: 0;
}


.success-button {
    border: 1.5px solid #4FAE32;
    color: #4FAE32;
}


.danger-button {
    border: 1.5px solid red;
    background: white;
    color: red;
}



.result-box {
    border: 1px solid #111;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    font-size: 20px;
}


.result-box span {
    display: block;
    margin-top: 10px;
}


.edit-link {
    color: #4FAE32;
    text-decoration: none;
    margin-right: 15px;
}