﻿body {
    background-color: #fcfcf1;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 40px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.login-box {
    background-color: white;
    padding: 10px 30px 10px 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
    width: 30%;
    max-width: 400px;
    min-width: 280px;
    height:fit-content;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

.pin-input {
    width: 100%;
    max-width: 250px;
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
    padding: 8px;
}

.keypad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

    .keypad button {
        height: 50px;
        font-size: 20px;
        cursor: pointer;
        border: none;
        background-color: #eaeaea;
        border-radius: 5px;
        transition: background-color 0.3s;
    }

        .keypad button:hover {
            background-color: #ccc;
        }

.error {
    color: red;
    margin-top: 15px;
}

/* ✅ موبايلات */
@media (max-device-width: 600px) {
    body {
        flex-direction: column;
        padding: 20px 10px;
    }

    .login-box {
        width: 100%;
        padding: 20px;
        border-radius: 8px;
    }

    .logo {
        width: 120px;
        margin-bottom: 15px;
    }

    .keypad button {
        font-size: 18px;
        height: 45px;
    }

    .pin-input {
        font-size: 18px;
    }
}
