/* Restricted Access Pages Styling */
.restricted-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: #000000;
}

.restricted-card {
    background-color: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 1rem;
    padding: 3rem;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.restricted-icon,
.restricted-title {
    display: inline-block;
    vertical-align: middle;
}

.restricted-icon {
    font-size: 4rem;
    color: #ef4444;
    margin-bottom: 0;
    margin-right: 1rem;
}

.restricted-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
}

.restricted-subtitle {
    font-size: 1.1rem;
    color: #888888;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.restricted-message {
    background-color: transparent;
    border: 1px solid #333333;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.restricted-message h3 {
    color: #bebebe;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.restricted-message p {
    color: #ccccccd2;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-info {
    background-color: transparent;
    border: 1px solid #ef4444;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info h4 {
    color: #ef4444;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info p {
    color: #888888;
}

.contact-info a {
    color: #bdbdbd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.4s ease;
}

.contact-info a:hover {
    color: #ebebeb;
}

.contact-info-id {
    color: #ff0000;
    font-size: small;
}

.back-link {
    margin-top: 2rem;
}

.back-link a {
    color: #888888;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.back-link a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .restricted-card {
        padding: 2rem;
        border: none;
        background-color: transparent;
    }
    
    .restricted-title {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .restricted-icon {
        font-size: 2rem;
    }

    
    
    .restricted-subtitle {
        font-size: 1rem;
    }
} 