body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0; /* Light grey background */
    display: flex;
    justify-content: center;
    align-items: center;
}

.txt {margin-top: 10px;
    margin-bottom: 30px;
    line-height: 26px;}

.container {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background: white;
    border-radius: 11px;
    border: solid 1px #dfdfdf;
}

.fcf-form-class {
    width: 100%; /* Allows the form to fill the container */
    text-align: left; /* Aligns the form text to the left */
}

.fcf-form-group {
    margin-bottom: 15px;
}

.fcf-label {
    display: block;
    margin-bottom: 5px;
}

.fcf-input-group input, .fcf-input-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Makes sure padding doesn't affect the overall width */
}

.fcf-btn-primary {
    background-color: #007bff;
    color: white;
    font-size: 16px;
    padding: 10px;
    border-radius: 4px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.fcf-btn-primary:hover {
    background-color: #0056b3;
}

@media (max-width: 600px) {
    .container {
        width: 95%;
        padding: 10px;
    }
}


a {
    color: #007bff; /* Blue color for links */
    text-decoration: none; /* Removes underline from links */
    transition: color 0.3s ease; /* Smooth color transition for hover effect */
}

a:hover, a:focus {
    color: #0056b3; /* Darker blue on hover/focus for a nice effect */
    text-decoration: underline; /* Adds underline on hover/focus for clarity */
}
