/* styles.css */

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2ecf7; /* More lilac color */
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    color: #8e44ad; /* Lilac color */
}

p {
    color: #555;
}

a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #8e44ad;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

a:hover {
    background-color: #6c3483; /* Darker lilac on hover */
}

.back-link {
    margin-top: 20px;
    
}

.left-image, .right-image {
    height: auto;
    margin-top: 20px;
}

.left-image {
    width: 150px; /* Adjust the width as needed */
    float: left;
    margin-right: 20px;
}

.right-image {
    width: 250px; /* Adjust the width as needed */
    float: right;
    margin-left: 20px;
    margin-top: -20px;
}

.qr-code-container {
    text-align: center;
    margin-bottom: 20px;
}

.qr-code-container img {
    max-width: 100%;
    height: auto;
}

.large-text-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.large-text-box p {
    color: #555;
}

/* styles.css */

/* ... (previous styles) */

.registration-link {
    text-align: center;
    margin-top: 20px;
}

.registration-link p {
    color: #555;
}

.registration-link a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #8e44ad; /* Lilac color */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.registration-link a:hover {
    background-color: #6c3483; /* Darker lilac on hover */
}

/* ... (add more styles as needed) */


