/* Wrapper alignment */
.col-lg-6 {
    display: flex;
    justify-content: center;
    padding: 20px;
}

/* Form box with background color */
.form-box {
    width: 100%;
    max-width: 430px;
    padding: 25px 30px;
    border-radius: 14px;
	
  background: linear-gradient(135deg, #f0f7ff, #e6f0ff);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid #d6e4ff;
}

/* Title */
.form-box h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1a3c6d;
    font-weight: 600;
}

/* Labels */
.form-box label {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #102a43;
}

/* Inputs and textarea */
.form-box input,
.form-box textarea {
    width: 100%;
    padding: 10px 12px;
    margin-top: 6px;
    border-radius: 8px;
    border: 1px solid #b6c6e0;
    font-size: 14px;
    background: #ffffff;
    transition: 0.3s ease;
}

/* Focus effect */
.form-box input:focus,
.form-box textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.4);
}

/* Button */
.form-box button {
    margin-top: 18px;
    padding: 10px 32px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border: none;
    border-radius: 22px;
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Button hover */
.form-box button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Center button */
.form-box center {
    display: flex;
    justify-content: center;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .form-box {
        padding: 20px;
    }

    .form-box h2 {
        font-size: 20px;
    }
}

