.sdo-form {
    max-width: 600px;
    margin: 40px auto;
}

.sdo-row {
    display: flex;
    gap: 15px;
}

.sdo-col {
    flex: 1;
}

.sdo-form input,
.sdo-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
}

.sdo-form button {
    width: 100%;
    padding: 14px;
    background: #6c2bd9;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.sdo-form {
    max-width: 600px;
    margin: 40px auto;
}

.sdo-row {
    display: flex;
    gap: 15px;
}

.sdo-col {
    flex: 1;
}

.sdo-form input,
.sdo-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
}

.sdo-form button {
    width: 100%;
    padding: 14px;
    background: #6c2bd9;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.sdo-form button:hover {
    background: #5721b5;
}

.sdo-order-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

/* Responsive */
@media (max-width: 600px){
    .sdo-row {
        flex-direction: column;
    }
}


/* Alert Messages */
.sdo-alert {
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    font-weight: 500;
}

.sdo-alert.error {
    background: #fee2e2;
    color: #b91c1c;
}

.sdo-alert.warning {
    background: #fef9c3;
    color: #92400e;
}

/* Success Box */
.sdo-success-box {
    background: #f0fdf4;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
}

.sdo-success-box h3 {
    margin-bottom: 15px;
}

/* Button */
.sdo-button {
    display: inline-block;
    padding: 12px 20px;
    background: #6c2bd9;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.sdo-button:hover {
    background: #5721b5;
}
