/* Custom Analyzer Form Styles */

/* Main Wrapper */
.analyzer-checker-wrapper {
    margin: 40px 0;
}

.analyzer-checker-wrapper .analyzer-inner-container {
    background: transparent;
}

.analyzer-checker-wrapper .analyzer-portlet {
    background: transparent;
    box-shadow: none;
}

/* Checker Container */
.analyzer-checker-wrapper .analyzer-container {    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 20px 20px;
    gap: 18px;
    width: 100%;
    max-width: 1270px;
    margin: 0 auto;
    background: #FFFFFF;
    box-shadow: 0px 10px 30px rgba(20, 20, 20, 0.05);
    border-radius: 100px;
}

.analyzer-checker-wrapper .analyzer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    width: 100%;
    max-width: 1042px;
}

.analyzer-checker-wrapper .analyzer-title {
    padding-left: 10px !important;
    width: 100%;
    max-width: 350px;
}

.analyzer-checker-wrapper .analyzer-title span {
        color: #474C6D;
    font-family: 'muli', Helvetica, Arial, sans-serif;
    font-weight: lighter;
    text-transform: none;
    font-size: 16px;
}

/* Input Container */
.analyzer-checker-wrapper .analyzer-input-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 5px;
    gap: 10px;
    width: 100%;
    border: 1px solid rgba(20, 20, 20, 0.2);
    border-radius: 28px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.analyzer-checker-wrapper .analyzer-input-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    width: 100%;
    gap: 20px;
}

/* Domain Input */
.analyzer-checker-wrapper .analyzer-domain-input {
    flex: 1;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: #000000;
    padding: 15px 10px;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    margin-bottom: 0 !important;
    width: auto !important;
    display: block !important;
}

.analyzer-checker-wrapper .analyzer-domain-input::placeholder {
    color: rgba(20, 20, 20, 0.4);
}

.analyzer-checker-wrapper .analyzer-domain-input:focus,
.analyzer-checker-wrapper .analyzer-domain-input:active,
.analyzer-checker-wrapper .analyzer-domain-input:hover,
.analyzer-checker-wrapper .analyzer-domain-input:focus-visible,
.analyzer-checker-wrapper .analyzer-domain-input:focus-within,
.analyzer-checker-wrapper .analyzer-domain-input:-webkit-autofill,
.analyzer-checker-wrapper .analyzer-domain-input:-webkit-autofill:hover,
.analyzer-checker-wrapper .analyzer-domain-input:-webkit-autofill:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    background-color: transparent !important;
}

/* Input Container States */
.analyzer-checker-wrapper .analyzer-input-container:focus-within {
    border-color: #4875F4;
    box-shadow: 0 0 0 2px rgba(72, 117, 244, 0.2);
}

.analyzer-checker-wrapper .analyzer-input-container.is-valid {
    border-color: #0abb87 !important;
    box-shadow: 0 0 0 2px rgba(10, 187, 135, 0.2) !important;
}

.analyzer-checker-wrapper .analyzer-input-container.is-invalid {
    border-color: #fd397a !important;
    box-shadow: 0 0 0 2px rgba(253, 57, 122, 0.2) !important;
}

/* Description Text */
.analyzer-checker-wrapper .analyzer-description {
    margin-left: 5px !important;
    display: block;
    margin-top: 8px;
    text-align: left;
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #141414;
}

/* Check Button */
.analyzer-checker-wrapper .analyzer-check-button {
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    width: 150px;
    height: 40px;
    background: #4875F4;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.analyzer-checker-wrapper .analyzer-check-button:disabled {
    background: rgba(72, 117, 244, 0.5);
    cursor: not-allowed;
}

.analyzer-checker-wrapper .analyzer-check-button:hover:not(:disabled) {
    background: #3a5ec7;
    transform: translateY(-1px);
}

.analyzer-checker-wrapper .analyzer-check-button .analyzer-btn-text {
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    color: #FFFFFF;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .analyzer-checker-wrapper .analyzer-container {
        border-radius: 50px;
        padding: 20px 15px 30px;
        margin: 0 10px;
    }
    
    .analyzer-checker-wrapper .analyzer-section {
        width: 100%;
        padding: 0 10px;
    }
    
    .analyzer-checker-wrapper .analyzer-input-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .analyzer-checker-wrapper .analyzer-domain-input {
        width: 100%;
        text-align: center;
        padding: 20px 15px;
    }
    
    .analyzer-checker-wrapper .analyzer-check-button {
        width: 100%;
        min-width: 200px;
    }
    
    .analyzer-checker-wrapper .analyzer-title span {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .analyzer-checker-wrapper .analyzer-container {
        border-radius: 20px;
        padding: 20px 15px !important;
    }

    .analyzer-checker-wrapper .analyzer-title span {
        font-size: 16px;
    }

    .analyzer-checker-wrapper .analyzer-check-button {
        padding: 8px;
        height: 50px;
        border-radius: 15px;
    }
}