* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Comic Sans MS", "Comic Sans", cursive, sans-serif;
    height: 100vh;
    overflow: hidden;
}

.split-layout {
    display: flex;
    height: 100%;
    width: 100%;
}

.left-pane {
    flex: 65;
    background-image: url('background2.png');
    background-size: cover;
    background-position: 10% center;
    background-repeat: no-repeat;
}

.right-pane {
    flex: 35;
    background: linear-gradient(to bottom, #000000, #3a3a3a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    min-width: 350px;
    padding: 2rem 1rem 1.5rem 1rem;
    overflow-y: auto;
}

.form-logo {
    width: 85%;
    max-width: 320px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
}

.form-section {
    width: 85%;
    max-width: 350px;
    color: #ffffff;
}

.form-section h1 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.input-group {
    margin-bottom: 0.8rem;
}

.input-group label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.input-group input {
    width: 100%;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #ffffff;
    border-radius: 0;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.2rem;
    margin-bottom: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    cursor: pointer;
    width: 15px;
    height: 15px;
    accent-color: #ffffff;
}

.checkbox-group label {
    font-size: 0.85rem;
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 0.6rem;
    margin-top: 0.8rem;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 0;
    font-family: inherit;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.submit-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

.toggle-text {
    text-align: center;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
}

footer {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    color: #00ff00;
    font-size: 0.8rem;
    pointer-events: none;
}