/* signin.html */
.signin-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* direction: rtl; */
    padding: 0 10px;
    min-height: 100vh;
    box-sizing: border-box;
}
.signin-logo {
    margin-bottom: 18px;
    margin-top: 10px;
}
.signin-logo img {
    width: 103px;
    object-fit: contain;
}
.signin-box {
    width: 100%;
    max-width: 350px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px 26px;
    box-sizing: border-box;
    background-color: #fff;
    margin-bottom: 22px;
}
.signin-box h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #111;
}
.signin-box label {
    display: block;
    font-size: 13px;
    font-weight: bold;
    color: black;
    margin-bottom: 4px;
}
.signin-box input[type="text"] {
    width: 100%;
    height: 31px;
    padding: 3px 7px;
    border: 1px solid #a6a6a6;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 13px;
    outline: none;
    transition: all 0.1s linear;
    margin-bottom: 14px;
}
.signin-box input[type="text"]:focus {
    box-shadow: 0 0 3px 2px #13d5f7e7;
    border: none;
}
.signin-btn {
    width: 100%;
    height: 31px;
    background: #fed623;
    border: 1px solid #f2c200;
    border-radius: 25px;
    cursor: pointer;
    font-size: 13px;
    color: #111;
    margin-bottom: 15px;
    transition: background 0.1s;
}
.signin-btn:hover {
    background: #f7ca00;
}
.terms-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    color: #111;
    margin: 0 0 15px 0;
}
.signin-page a {
    color: #0066c0; /* لون روابط أمازون الأزرق الشهير */
    text-decoration: none;
}
.signin-page a:hover {
    color: #37475a;
    text-decoration: underline;
}
.help-link {
    font-size: 14px;
    font-weight: 600;
}
.signin-footers {
    width: 100%;
    margin-top: auto;
    padding-top: 25px;
    text-align: center;
    background-color: white;
    border-top: 1px solid rgba(0, 0, 0, 0.57);
    margin-bottom: 500px;
}
.footer-links-sign {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 600;
}
.footer-copyright {
    font-size: 12px;
    color: #555;
    font-weight: 600;
    margin-bottom: 30px;
}
