﻿body {
    font-family: "web_Yekan", Tahoma;
    background: #f3f3f3;
}

#loginForm {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
    min-height: 80vh;
    flex-direction: column;
    margin: 0;
}

    #loginForm .main {
        background-color: #fff;
        border-radius: 15px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
        padding: 10px 20px;
        transition: transform 0.2s;
        max-width: 500px;
        width: 100%;
        text-align: center;
    }

    #loginForm h1 {
        color: #4CAF50;
    }

    #loginForm label {
        display: block;
        width: 100%;
        margin-top: 10px;
        margin-bottom: 5px;
        text-align: start;
        color: #555;
        font-weight: bold;
    }


    #loginForm input {
        direction: ltr;
        display: block;
        width: 100%;
        margin-bottom: 15px;
        padding: 10px;
        box-sizing: border-box;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

    #loginForm button {
        padding: 15px;
        border-radius: 10px;
        margin-top: 15px;
        margin-bottom: 15px;
        border: none;
        color: white;
        cursor: pointer;
        background-color: #4CAF50;
        width: 100%;
        font-size: 16px;
    }

        #loginForm button[disabled] {
            background-color: silver;
        }

    #loginForm .wrap {
        display: flex;
        justify-content: center;
        align-items: center;
    }
