/* General Page Styling */
body {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
    background-image: url('../media/bhutan.png'); /* Adjusted path */
    background-repeat: repeat;
    background-size: 150px; /* Fixed size instead of percentage */
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Card Styling */
.card {
    border-radius: 10px;
    border: none;
}

.card-header {
    border-radius: 10px 10px 0 0;
    text-align: center;
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
}
.feedback-text {
    color: #111111; 
}

.form-text {
    color: rgb(253, 127, 1);
    font-weight: bold;
}

.card-body {
    padding: 25px;
}

/* Form Inputs */
.form-control {
    border-radius: 8px;
    border: 1px solid #daa278;
    box-shadow: none;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.3);
}

.custom-btn {
    font-size: 14px; /* Smaller text */
    padding: 6px 20px; /* Adjust padding */
    width: auto; /* Adjust width */
    border-radius: 6px; /* Rounded corners */
}

.btn-primary:hover {
    background: #b35400;
}

/* Alert Messages */
.alert {
    border-radius: 8px;
    font-weight: bold;
}

.footer {
    margin-top: auto;
    background-color: #f8f9fa;
    padding: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
    background-image: url('../media/bhutan.png'); /* Adjusted path */
    background-repeat: repeat;
    background-size: 150px; /* Fixed size instead of percentage */
    background-attachment: fixed;
    margin-bottom: 1px;
  }

/* Responsive Design */
@media (max-width: 768px) {
    .col-md-8 {
        width: 100%;
    }
}
