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

body {
    background: #f5f7fb;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    color: #1f2937;
    line-height: 1.5;
}

/* Container */
.container {
    width: 720px;
    margin: 60px auto;
    background: #d9dfeb;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Headings */
h1 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.3px;
}

h2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #111827;
}

/* Form layout */
form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Labels */
label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-top: 10px;
}

/* Inputs */
input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    transition: all 0.2s ease;
}

input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Button */
button {
    width: 100%;
    margin-top: 18px;
    padding: 12px 16px;
    border: none;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    cursor: pointer;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
}

button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
}

button:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Divider */
hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #e5e7eb, transparent);
    margin: 40px 0;
}

/* Status box */
.status-box {
    margin-top: 20px;
    padding: 16px;
    border-radius: 10px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

/* Status states */
.success {
    color: #16a34a;
    font-weight: 600;
}

.expired {
    color: #dc2626;
    font-weight: 600;
}

/* File input refinement */
input[type="file"] {
    padding: 10px;
    background: #f9fafb;
}

/* full-width wrapper */
.terms-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 40px 0 60px 0;
}

/* independent card */
.terms-box {
    width: 720px; /* same as form container for alignment */
    background: #d9dfeb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 22px 26px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

/* heading */
.terms-box h3 {
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

/* list reset */
.terms-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* custom bullets */
.terms-box li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
}

.terms-box li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 18px;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 40px 0;
    gap: 40px;
}