

/* General Background Styling */
body {
    direction: ltr;
    background-image: url('../Images/project_web.png'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Matching the Navbar to your home page */
.custom-nav {
    background-color: rgba(196, 224, 199, 0.8) !important;
}

/* The form container - matching the white transparent box style */
.form-wrapper {
    background-color: rgba(255, 255, 255, 0.8); 
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(196, 224, 199, 0.8);
}

/* Inputs styling */
.form-control, .form-select {
    border: 2px solid rgba(196, 224, 199, 0.5);
    border-radius: 8px;
}

.form-control:focus, .form-select:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

/* Button styling - using the Success green from your home page */
.btn-success {
    background-color: #198754;
    border: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-success:hover {
    background-color: #146c43;
    transform: translateY(-2px);
}

/* Header Text Shadow for readability */
header h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}