/* OKTO Frontend Styles */

.okto-contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.okto-form-group {
    margin-bottom: 20px;
}

.okto-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #374151;
}

.okto-form-group input,
.okto-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.okto-form-group input:focus,
.okto-form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.okto-submit-btn {
    background: #2563eb;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.okto-submit-btn:hover {
    background: #1d4ed8;
}

.okto-submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.okto-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #2563eb;
    border-radius: 50%;
    animation: okto-spin 1s linear infinite;
}

@keyframes okto-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.okto-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    color: white;
    font-weight: 500;
    z-index: 9999;
    animation: okto-slide-in 0.3s ease;
}

.okto-notification-success {
    background: #059669;
}

.okto-notification-error {
    background: #dc2626;
}

@keyframes okto-slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
