:root {
    --primary-green: #008751;
    --tech-blue: #1a237e;
    --simply-gold: #ffc107;
    --bg-light: #f4f7f6;
    --text-dark: #333;
    --primary-grey: #e0e0e0;
    --primary-red: #e02424;
    --primary-orange: #ffa500;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-light);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Header / Branding */
header {
    width: 100%;
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.logo-placeholder {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--tech-blue);
}

.divider {
    width: 2px;
    height: 30px;
    background: #ddd;
}

/* Main Form Card */
.container {
    max-width: 500px;
    width: 90%;
    background: white;
    margin: 40px 0;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--primary-green);
}

h2 {
    color: var(--tech-blue);
    margin-bottom: 10px;
    text-align: center;
}

p.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

input:not([type="checkbox"]),
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 1rem;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 5px rgba(0, 135, 81, 0.2);
}

.btn-submit {
    width: 100%;
    background: var(--primary-green);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #006b40;
}

footer {
    margin-top: auto;
    padding: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}

.partner-tag {
    background: #fff8e1;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.8rem;
    color: #b8860b;
    margin-bottom: 15px;
    border: 1px solid var(--simply-gold);
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.modal-card {
    background: white;
    width: 90%;
    max-width: 420px;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: popIn 0.25s ease-out;
}

@keyframes popIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 18px;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
}

.modal-close:hover {
    color: #333;
}

.modal-actions button {
    width: 100%;
    margin-top: 10px;
}

.text-xs {
    font-size: .75rem;
}

.text-red-600 {
    --text-opacity: 1;
    color: var(--primary-red);
    color: rgba(224,36,36,var(--text-opacity));
}

.btn-disabled {
    width: 100%;
    background: var(--primary-grey);
    color: #ccc;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}