/* License Verification Page */
.verify-section {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
    color: #333;
}

.verify-section .section-header {
    font-size: 2.4em;
    margin-bottom: 20px;
    color: #212121;
    font-weight: bold;
}

.verify-section .section-header i {
    font-size: 2.8em;
    margin-bottom: 10px;
    color: #4ca1af;
    display: block;
}

/* Verification Form */
.verify-form {
    max-width: 600px;
    margin: 30px auto;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.verify-form input {
    width: 100%;
    padding: 12px;
    font-size: 1.1em;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
}

.btn-verify {
    display: inline-block;
    padding: 12px 30px;
    background: #4ca1af;
    color: #fff;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-verify:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Alert Boxes */
.alert-box {
    display: block;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: opacity 0.3s ease;
}

/* Success Alert */
.alert-success {
    background: #dff0d8;
    color: #3c763d;
    border: 2px solid #3c763d;
}

/* Error Alert */
.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #721c24;
}

/* Alert Icons */
.alert-box i {
    margin-right: 8px;
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .verify-section {
        padding: 60px 20px;
    }

    .verify-section .section-header {
        font-size: 2em;
    }

    .btn-verify {
        font-size: 1em;
    }
}
