/* --- Base Styles --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Padauk', sans-serif;
    background-color: #1a252c; /* Fallback dark background */
    background-image: url('placeholder-background.jpg'); /* Replace with actual background image if needed */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* --- Layout --- */
.overlay {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Darkens the background slightly */
}

.card-container {
    background-color: #f1f4ec; /* Off-white background from image */
    width: 100%;
    max-width: 420px;
    padding: 40px 30px;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

/* --- Typography & Header --- */
.brand-header {
    text-align: center;
    margin-bottom: 30px;
}

.angled-text {
    transform: skewY(-6deg); /* Mimics the angled 3D text effect */
    color: #0056a4; /* Tuborg Blue */
    font-weight: 900;
}

.angled-text h1 {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 5px;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.angled-text h2 {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.why-not {
    color: #0056a4;
    font-size: 0.8rem;
    font-weight: bold;
    font-style: italic;
    margin-top: 5px;
    transform: skewY(-6deg);
}

.form-title {
    color: #1a8f2d; /* Green text */
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: bold;
}

/* --- Scrollable Terms Box --- */
.terms-scrollbox {
    background-color: transparent;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 15px;
    margin-bottom: 25px;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Custom Scrollbar */
.terms-scrollbox::-webkit-scrollbar {
    width: 6px;
}
.terms-scrollbox::-webkit-scrollbar-track {
    background: #e0e5d9; 
    border-radius: 10px;
}
.terms-scrollbox::-webkit-scrollbar-thumb {
    background: #c3cac0; 
    border-radius: 10px;
}

.terms-heading {
    font-weight: bold;
    margin-bottom: 8px;
    margin-top: 15px;
}
.terms-heading:first-child {
    margin-top: 0;
}

.terms-scrollbox ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 10px;
}

.terms-scrollbox li {
    margin-bottom: 8px;
}

/* --- Checkbox Styling --- */
.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #111;
}

.checkbox-container input {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    accent-color: #0c1b33; /* Dark blue/black checkbox */
    cursor: pointer;
}

.checkbox-text u {
    text-decoration-color: #666;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* --- Submit Button --- */
.submit-btn {
    width: 100%;
    height: 48px;
    background-color: #cfd2cc; /* Grey color indicating disabled/empty state */
    border: 1px solid #a8afa5;
    border-radius: 2px;
    cursor: not-allowed;
    transition: background-color 0.3s ease;
}

/* Optional: Active state for button if needed later */
.submit-btn.active {
    background-color: #1a8f2d;
    border-color: #1a8f2d;
    cursor: pointer;
}