/* Custom background image and styling */
body {
    background-image: url('office.jpg'); /* Free image of an office space */
    background-size: cover;
    background-position: center;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    background-color: rgba(255, 255, 255, 0.8); /* Slight opacity for readability */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #9B59B6; /* Lilac color */
}

.btn-custom {
    background-color: #9B59B6; /* Lilac */
    color: white;
    border: none;
}

.btn-custom:hover {
    background-color: #8e44ad; /* Darker lilac */
}

.form-label {
    color: #9B59B6; /* Lilac label color */
}

.link {
    color: #8e44ad; /* Darker lilac for links */
}

.link:hover {
    color: #6c3483; /* Even darker lilac */
}

