/* Form Styles */
#aimg-generator {
    background: #0f0f0f;
    padding: 40px;
    border-radius: 25px;
    border: 2px solid #2C2A2A;
}
.aimg-form-title {
    text-align: center;
    padding-bottom: 25px;
}
#aimg-contact-details .usage-info {
    text-align: center;
    padding-bottom: 20px;
}
.aimg-step {
    transition: all 0.3s ease;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
#aimg-form input,
#aimg-form select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.form-group input:focus,
#aimg-form input:focus,
#aimg-form select:focus {
    border-color: #007cba;
    outline: none;
}

/* Buttons */
.aimg-form-btn {
    position: relative;
    z-index: 1;
}
.button-primary {
    background: #ffffff;
    color: #000000;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
}
.aimg-form-btn:before {
    z-index: -1;    
}
/*.button-primary:hover {*/
/*    background: #005a87;*/
/*}*/

.button-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* User Welcome */
.user-welcome {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
}

.user-welcome h3 {
    color: #fff;
    margin-bottom: 10px;
}

/* Loading */
#aimg-loading {
    text-align: center;
    padding: 20px;
    font-size: 18px;
    color: #007cba;
}

/* Results */
.mockup-success {
    text-align: center;
    padding: 20px 0;
}

.generated-mockup {
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    background: white;
}

.generated-mockup img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.mockup-actions {
    margin-top: 20px;
}

.mockup-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin-top: 15px;
}


.usage-counter #remaining-count {
    color: #f9b905;
}
.usage-counter {
    padding-top: 12px;
    font-size: 14px;
}
.ts-control {
    margin-bottom: 25px;
    padding: 8px 18px !important;
    border-radius: 5px !important;    
}
.limit-reached {
    padding-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .form-group input,
    #aimg-form input,
    #aimg-form select {
        font-size: 14px;
    }
}