﻿* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    
}
.all {
    margin: 10px auto;
    max-width: 100%;
    background: white;
    padding: 30px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-align: center;
    height:90vh;
    overflow: hidden;
 
       
}
.waiter {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
    z-index: 9999; /* higher than any other element */
    pointer-events: all; /* ensures it captures all clicks */
}

.spinner {
    width: 24px;
    height: 24px;
    border: 4px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    pointer-events: all;
    margin:3px auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    animation:door 4s linear infinite;
}
.logo2 {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    
}

h1 {
    color: #2d5f2e;
    font-size: 24px;
    margin: 5px 0 ;
    font-weight:600;
}

 

p {
    font-size: 16px;
    margin-bottom: 20px;
}

.input-field {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    text-align:center;
}

.btn {
    width: 100%;
    padding: 12px;
    background: #2d5f2e;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.3s;
}

    .btn:hover {
        background: #1e401f;
    }

@keyframes door {
    to {
        transform: rotateY(360deg)
    }
}