.sms-form-wrapper {
      width:95%;
     max-width: 1200px; 
    margin: 50px auto;
    background: #ffffff;
    padding: 0;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    font-family: Arial, sans-serif;
}


.sms-form-header {
    background: linear-gradient(135deg, #0f172a, #2563eb);
    color: #ffffff;
    padding: 35px 30px;
    text-align: center;
}

.sms-form-header h2 {
    margin: 0 0 10px;
    font-size: 30px;
    font-weight: 700;
}

.sms-form-header p {
    margin: 0;
    font-size: 15px;
    opacity: 0.9;
}

#sms-application-form {
    padding: 35px;
}

.sms-section {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 25px;
    border-radius: 14px;
    margin-bottom: 25px;
}

.sms-section h3 {
    margin: 0 0 22px;
    font-size: 20px;
    color: #111827;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 12px;
}

.sms-row {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
}

.sms-col {
    width: 50%;
}

.sms-col-full {
    width: 100%;
}

.sms-form-wrapper label {
    display: block;
    font-size: 14px;
    color: #374151;
    font-weight: 600;
    margin-bottom: 8px;
}

.sms-form-wrapper input,
.sms-form-wrapper select {
    width: 100%;
    height: 48px;
    padding: 10px 14px;
    border: 1px solid #d1d5db !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: #111827 !important;
    font-size: 15px;
    box-sizing: border-box;
    outline: none;
}

.sms-form-wrapper input:focus,
.sms-form-wrapper select:focus {
    border-color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.sms-hidden {
    display: none;
}

.sms-alert {
    padding: 15px 18px;
    border-radius: 10px;
    font-weight: 600;
}

.sms-alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.sms-learning-box {
    background: #ffffff;
    border: 1px solid #dbeafe;
    padding: 22px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.sms-learning-box h4 {
    margin: 0 0 10px;
    color: #1e3a8a;
    font-size: 18px;
}

.sms-learning-box p {
    color: #4b5563;
}

.sms-learning-box ul {
    margin: 15px 0 0;
    padding-left: 20px;
}

.sms-learning-box li {
    margin-bottom: 8px;
    color: #374151;
}

.sms-checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    margin-bottom: 20px;
}

.sms-checkbox-label input {
    width: 18px !important;
    height: 18px !important;
}

.sms-field-error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15) !important;
}

.sms-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    border: none;
    padding: 15px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.sms-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(37,99,235,0.3);
}

.sms-submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

@media (max-width: 768px) {
    .sms-form-wrapper {
        margin: 20px 12px;
        border-radius: 14px;
    }

    #sms-application-form {
        padding: 22px;
    }

    .sms-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }

    .sms-col,
    .sms-col-full {
        width: 100%;
        margin-bottom: 16px;
    }

    .sms-form-header h2 {
        font-size: 24px;
    }
}


.sms-form-header {
    background: linear-gradient(135deg,#0f172a,#2563eb);
    color: #fff;
    text-align: center;
    padding: 30px;
}

.sms-company-logo {
    margin-bottom: 15px;
}

.sms-company-logo img {
    max-width: 120px;
    max-height: 120px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
}

.sms-form-header h2 {
    margin: 10px 0;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.sms-company-info {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.sms-company-info span {
    background: rgba(255,255,255,0.15);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
}

.sms-form-header p {
    margin: 0;
    color: rgba(255,255,255,0.9);
}