﻿
.WrapparCenter {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;

}
.input-card {
    background: #e5e5e5;
    padding: 16px;
    border-radius: 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 400px;
    margin: 5px 0px;
  
}

.input-card:focus {
    
}
@media (max-width: 500px) {
    .input-card {

        width: 100%;

    }
}

    .input {
        padding: 10px 12px;
        border: 1px solid #d1d5db;
        border-radius: 10px;
        font-size: 15px;
        outline: none;
        transition: 0.15s;
        background: white;
        transition: transform 0.2s ease; 
    }

        .input:focus {
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
            transform: scale(1.03); /* تكبير البطاقة 3% */
        }

        .input:invalid {
            border-color: red;
            box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
        }



.mybutton {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #090909;
    padding: 10px;
    /*font-size: 18px;*/
    border-radius: 0.5em;
    background: linear-gradient(90deg,rgba(235, 235, 235, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(232, 230, 230, 1) 100%);
    cursor: pointer;
    border: 1px solid #a59f9f;
    transition: all 0.3s;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 5px #ffffff;
    margin: 5px;
    width: 100%;
    max-width: 400px;
}

        .mybutton:hover {
            border: 1px solid white;
            background: linear-gradient(90deg,rgba(235, 235, 235, 1) 0%, rgba(255, 255, 255, 1) 100%, rgba(232, 230, 230, 1) 50%);
        }

        .mybutton:active {
            box-shadow: 4px 4px 12px #c5c5c5, -4px -4px 5px #ffffff;
            background-color: red;
        }


    .btn-processing {
        pointer-events: none;  
        cursor: wait !important;
        opacity: 0.7;  
        filter: grayscale(0.5); 
        box-shadow: none !important;  
    }


    .spinner {
        display: none; 
        width: 20px;
        height: 20px;
        border: 3px solid rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        border-top-color: #090909;
        animation: spin 0.8s linear infinite;
        position: fixed;
        z-index: 999;
        margin:auto;

    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

