* {
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background: #f2f4f7;
}

/* Main form card */
.form-container {
    max-width: 420px;
    margin: 30px auto;
    background: #ffffff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Logo */
.logo {
    text-align: center;
    margin-bottom: 12px;
}

.logo img {
    max-width: 170px;
    width: 100%;
    height: auto;
}

/* Title */
.form-container h2 {
    text-align: center;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #2c3e50;
}

/* Form groups */
.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
}

/* Inputs */
.form-group input,
.form-group select {
    width: 100%;
    padding: 11px 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #2e7d32;
    outline: none;
}

/* Terms & Conditions */
.terms {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.5;
    color: #444;
}

.terms input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.terms a {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 500;
}

.terms a:hover {
    text-decoration: underline;
}

/* Submit button */
.submit-btn {
    width: 100%;
