/* style.css - Professional Legal Look */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Bengali:wght@400;600&family=Poppins:wght@300;400;600&display=swap');

:root {
    --primary: #2c3e50;
    --accent: #2980b9;
    --bg: #f4f6f9;
    --white: #ffffff;
    --border: #e0e0e0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    margin: 0;
    padding: 20px;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 8px solid var(--accent);
    border-radius: 4px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 20px;
}

.header h1 {
    font-family: 'Noto Serif Bengali', serif;
    color: var(--primary);
    margin: 0;
    font-size: 28px;
}

.header p {
    color: #7f8c8d;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.agreement-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #fcfcfc;
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
}

.section-title {
    font-family: 'Noto Serif Bengali', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terms-list {
    list-style: none;
    padding: 0;
    font-size: 14px;
    color: #555;
}

.terms-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.terms-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 14px;
    background: #eef2f3;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}

.checkbox-wrapper input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-submit:hover {
    background: var(--accent);
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.success-message {
    text-align: center;
    color: green;
    font-weight: bold;
    padding: 20px;
    display: none;
}