.donate-page {
    max-width: 1200px;
    margin-inline: auto;
}

.guidelines-box,
.form-shell {
    background: #fff;
    border: 1px solid #ead7e8;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(73, 20, 52, 0.05);
}

.guidelines-box {
    margin-top: 0.9rem;
}

.guidelines-box h2 {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: #ad246d;
    font-size: 1.05rem;
}

.guidelines-box ul {
    margin: 0.62rem 0 0 1rem;
    color: #5f5268;
    display: grid;
    gap: 0.35rem;
    font-size: 0.9rem;
}

.form-shell {
    margin-top: 0.8rem;
}

.form-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.62rem;
}

.form-head h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.18rem;
}

.form-head i {
    color: #cf2f84;
    font-size: 1.2rem;
}

.form-grid {
    display: grid;
    gap: 0.8rem;
}

.form-grid.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 0.8rem;
}

.form-grid label {
    display: grid;
    gap: 0.35rem;
    font-weight: 700;
    color: #64546d;
    font-size: 0.84rem;
}

.form-grid label span,
.upload-row p span {
    color: #d33f7f;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    border: 1px solid #e7d5e5;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    font: inherit;
    color: #2d2531;
    background: #fafafa;
    transition: all 0.2s ease;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    outline: none;
    border-color: #bc2f79;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(188, 47, 121, 0.05);
}

.form-grid textarea {
    resize: vertical;
}

.checkbox-wrap {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    align-self: end;
    margin-bottom: 0.8rem;
}

.checkbox-wrap input {
    margin: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-wrap span {
    color: #6b5872;
    font-weight: 600;
}

.upload-row {
    border-top: 1px dashed #ebd8e9;
    border-bottom: 1px dashed #ebd8e9;
    padding: 0.7rem 0;
    margin: 0.55rem 0;
}

.upload-row p {
    color: #5f5069;
    font-weight: 700;
    font-size: 0.88rem;
}

.upload-controls {
    margin-top: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.upload-controls small {
    color: #715e79;
    font-size: 0.8rem;
}

.delivery-note {
    margin-top: 0.65rem;
    padding: 0.62rem;
    border-radius: 10px;
    background: #fdf7fc;
    border: 1px solid #f0dced;
}

.delivery-note h3 {
    margin-bottom: 0.3rem;
    color: #ad246d;
    font-size: 0.98rem;
}

.delivery-note p {
    color: #67596f;
    font-size: 0.88rem;
}

.submit-wrap {
    margin-top: 0.75rem;
    display: flex;
    justify-content: center;
}

.submit-wrap .soft-btn {
    background: #bc2f79;
    color: #fff;
    border: none;
    padding: 0.9rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(188, 47, 121, 0.15);
    min-width: 220px;
    font-size: 1rem;
}

.submit-wrap .soft-btn:hover {
    background: #9d2363;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(188, 47, 121, 0.2);
}

.submit-wrap .soft-btn:disabled {
    background: #d4a5c0;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 900px) {
    .form-grid.two-col {
        grid-template-columns: 1fr;
    }

    .checkbox-wrap {
        grid-column: span 1 !important;
    }
}

@media (max-width: 480px) {
    .submit-wrap .soft-btn {
        min-width: unset;
        width: 100%;
    }

    .form-shell {
        padding: 1.25rem;
    }

    .guidelines-box {
        padding: 1.25rem;
    }

    .donate-page {
        padding-inline: 0;
    }
}

