/* General Styles */
body {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
}

/* Centered Card Layout */
.container {
    max-width: 900px; /* Increased width */
}

.card {
    border-radius: 10px;
    border: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 30px;
}

/* Card Heading */
.card h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Form Elements */
.form-label {
    font-weight: bold;
	font-size:18px;
    color: #800000;
}

.form-control {
    border-radius: 5px;
}

textarea {
    resize: none;
}

/* Buttons */
.btn {
    border-radius: 5px;
    padding: 10px 20px;
    width: auto; /* Prevent stretching */
    display: inline-block;
	font-size: 22px;
}

/* Center Buttons */
.btn-container {
    text-align: center;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    border: none;
}

.btn-secondary:hover {
    background-color: #545b62;
}

.btn-success {
    background-color: #28a745;
    border: none;
}

.btn-success:hover {
    background-color: #218838;
}

/* Step Navigation */
#step1, #step2, #step3 {
    display: none;
}

#step1 {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        max-width: 90%;
    }
}
