.logo-img {
    height: 100px;
}
.google-play-botton-style {
height: 80px;
}

.appstore-button-style {
height: 55px;
}
.text-highlight {
    background: linear-gradient(45deg, #6bb0f8 0%,  #16f30b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    overflow: auto;
}

.modal-content {
    position: relative;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #000;
    border-bottom-width: 3px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #000;
}

.modal-header {
    padding: 20px 25px 10px;
    text-align: center;
}

.modal-header h2 {
    margin-top: 0;
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

.modal-header p {
    margin-bottom: 0;
    font-size: 16px;
    color: #666;
}

.modal-body {
    padding: 20px 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 16px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #4a6cf7;
    outline: none;
}

.invalid-input {
    border-color: #ff3b30 !important;
    background-color: rgba(255, 59, 48, 0.05) !important;
    box-shadow: 0 0 0 1px rgba(255, 59, 48, 0.2) !important;
}

.error-message {
    display: flex;
    align-items: center;
    color: #ff3b30;
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
    margin-bottom: 0;
    padding: 6px 10px;
    border-radius: 6px;
    background-color: rgba(255, 59, 48, 0.08);
    animation: fadeIn 0.3s ease-in;
}

.error-message::before {
    content: '⚠️';
    margin-right: 6px;
    font-size: 14px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(45deg, #6bb0f8 0%, #16f30b 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-footer {
    padding: 10px 25px 20px;
    text-align: center;
}

.modal-footer p {
    margin: 0;
    font-size: 14px;
    color: #888;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-header p {
        font-size: 14px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 14px;
    }
}