/* ZKyNet Landing Page - Components */

/* Modal Components */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background-color: #1e293b; /* slate-800 */
    border-radius: 0.5rem;
    max-width: 32rem;
    width: 100%;
}

.modal-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.modal-close-btn {
    color: #9ca3af; /* gray-400 */
    transition: color 0.3s ease;
}

.modal-close-btn:hover {
    color: white;
}

/* Email Service Options */
.email-service-option {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #374151; /* slate-700 */
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
    text-align: left;
    border: none;
    cursor: pointer;
}

.email-service-option:hover {
    background-color: #4b5563; /* slate-600 */
}

.email-service-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    color: white;
}

.email-service-info h3 {
    color: white;
    font-weight: 500;
}

.email-service-info p {
    color: #9ca3af; /* gray-400 */
    font-size: 0.875rem;
}

/* Service-specific icon colors */
.gmail-icon {
    background-color: #dc2626; /* red-600 */
}

.outlook-icon {
    background-color: #1d4ed8; /* blue-700 */
}

.yahoo-icon {
    background-color: #7c3aed; /* purple-600 */
}

.mailto-icon {
    background-color: #2563eb; /* blue-600 */
}

/* Form Components */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background-color: #374151; /* slate-700 */
    border: 1px solid #4b5563; /* slate-600 */
    color: white;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    ring: 2px;
    ring-color: var(--zky-purple);
    border-color: transparent;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db; /* gray-300 */
    margin-bottom: 0.5rem;
}

/* Notification Components */
.notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 50;
    max-width: 28rem;
    color: white;
}

.notification-success {
    background-color: #16a34a; /* green-600 */
}

.notification-error {
    background-color: #dc2626; /* red-600 */
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.notification-icon {
    height: 1.5rem;
    width: 1.5rem;
    margin-top: 0.125rem;
}

.notification-title {
    font-weight: 600;
}

.notification-message {
    font-size: 0.875rem;
}

/* Glass Card Component */
.glass-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
}

/* Feature Card Component */
.feature-card {
    background-color: #1e293b; /* slate-800 */
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
