body {
    background-color: #f8f9fa;
    font-family: 'Roboto', sans-serif;
}

h1 {
    font-weight: 500;
    margin-bottom: 20px;
}

.container {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 900px; /* Increase the max-width for a wider container */
    margin-top: 50px; /* Add some top margin for spacing */
}

.form-group label {
    font-weight: 500;
}

.form-check-label {
    font-weight: 400;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
}

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

.instructions {
    margin-top: 40px;
}

.instructions h2 {
    font-weight: 500;
    margin-bottom: 20px;
}

.instructions ol {
    padding-left: 20px;
}

.instructions ol li {
    margin-bottom: 10px;
}

.instruction-images {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instruction-images img {
    max-width: 60%; /* Adjust the width as needed */
    min-width: 200px; /* Set the minimum width */
    height: auto;
    margin-bottom: 20px; /* Add some margin for spacing between images */
}

.disclaimer {
    margin-top: 40px;
    font-size: 14px;
    color: #6c757d;
}
