﻿#verification-modal {
    display: flex;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

    #verification-modal .modal-content {
        background-color: #fff;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        max-width: 90%;
        width: 400px;
        position: relative;
    }

    #verification-modal p {
        text-align: center;
        margin-bottom: 1rem;
        font-size: 13px;
    }

    #verification-modal input {
        display: block;
        width: 93%;
        margin: 10px 0;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    #verification-modal .submit-button {
        display: block;
        width: 100%;
        padding: 12px;
        margin-top: 12px;
        background-color: #4CAF50;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 13px;
    }

    #verification-modal img {
        display: block;
        margin: 1rem auto 0;
        max-width: 66%;
        height: auto;
    }
