/* resources.css - Styles for Support and Forms */

.support-content {
    padding-top: 0px; 
    padding-bottom: 80px;
    margin-left: 0px;
    width: calc(100% + 35px);
}

.support-title {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 400;
}

.support-intro {
    color: #cccccc;
    margin-bottom: 40px;
    font-size: 16px;
    max-width: 800px;
}

.form-group {
    margin-bottom: 25px;
    width: 100%; 
}

.form-label {
    display: block;
    color: #e0e0e0;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

/* STYLING FOR THE WHITE BOXES */
.form-input, 
.form-textarea {
    width: 100%; 
    padding: 15px;
    border-radius: 4px; 
    border: 1px solid transparent;
    background-color: #ffffff;
    color: #000000;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition: all 0.2s;
    display: block;
    box-sizing: border-box; 
}

.form-textarea {
    resize: vertical; 
    min-height: 200px;
}

.form-input:focus,
.form-textarea:focus {
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.4);
    border-color: #3b82f6;
}

.submit-btn {
    background-color: #3b82f6; /* Blue */
    color: white;              /* White text */
    height: 60px;              /* Exact height requested */
    width: 100%;               /* Full width */
    
    border-radius: 6px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    font-weight: 400;
    margin-top: 10px;
    
    /* Flexbox ensures text is centered */
    display: flex;
    justify-content: center;
    align-items: center;
    
    transition: background-color 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.submit-btn:hover {
    background-color: #2563eb; 
}

/* Mobile Adjustments for Support */
@media (max-width: 768px) {
    .support-content {
        margin-left: 0;
        width: 100%;
        transform: none;
    }
}