.accesscontainer {
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    margin: 20px;
    width: 90%;
    background: linear-gradient(135deg, #ffffff4a 74%, #c7c1e495 100%);
    border-radius: 25px;
}

.accesslogo img {
    padding: 0px;
    width: 300px;
    height: auto;
    display: block;
    margin: 0px auto;

}

button {
    margin: 20px;
    font-family: "Inter", sans-serif;
    color: #FFFFFF;
    width: 100%;
    padding: 15px;
    border-radius: 25px;
    border: 1px solid #e2e8f03f;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 1);
    background-color: #1b172c;
}


input[type="password"] {
    width: 100%;
    
    padding: 12px 20px;
    border-radius: 20px;
    border: none;
    background-color: #5f5b70;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.4);
    outline: none;
}

label[for="password"] {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    font-size: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.error-state-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(255, 0, 0, 0.8) 100%);
    animation: blink 0.5s infinite;
    pointer-events: none;
    z-index: 999;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.error-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1b172c;
    color: #FF0000;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    z-index: 1000;
    border: 3px solid #FF0000;
}

.retry-form {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.retry-button {
    width: auto;
    padding: 10px 24px;
    font-size: 16px;
}