/* General Styling */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f5f5f7;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Background Image */
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background-image.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.8;
}

/* Container */
.container {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    z-index: 1;
}

/* Logo */
.logo {
    width: 150px;
    margin-bottom: 20px;
}

/* Heading */
h1 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    color: #007aff;
}

/* Input Group */
.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

/* Input Fields */
input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

input[readonly] {
    background-color: #e9ecef;
    color: #6c757d;
    text-align: center;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    gap: 8px;
    cursor: pointer;
}

.checkbox-group input {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}

.checkbox-group a {
    color: #007aff;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Submit Button */
button {
    background-color: #e63946;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

button:hover {
    background-color: #d62839;
}