.new-shipping {
    background-color: rgb(255, 255, 255); /* Example Coral color */
    animation: slideUp 2000ms ease;
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.new-shipping .container {
    max-width: 480px; /* Set a max width for the form */
    width: 100%;
    padding: 20px;
}

.new-shipping h1 {
    font-size: 18px;
    color: rgb(73, 59, 118); /* Title color */
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
}

.new-shipping input {
    width: 100%;
    height: 30px;
    padding: 5px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid rgb(142, 40, 7); /* Border color */
    margin-top: 5px;
    margin-bottom: 15px;
}

.new-shipping label {
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: rgb(142, 40, 7);
}

.new-shipping .name,
.new-shipping .address-info,
.new-shipping .cc-info {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.new-shipping .name div,
.new-shipping .address-info div,
.new-shipping .cc-info div {
    width: 48%;
}

.new-shipping .street {
    text-align: left;
}

.new-shipping .btns {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 20px;
}

.new-shipping .btns button {
    width: 48%;
    padding: 8px;
    font-size: 14px;
    text-transform: uppercase;
    color: rgb(207, 201, 225); /* Light grayish color */
    background-color: rgb(74, 59, 118); /* Dark purple */
    border: 0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.new-shipping .btns button:hover {
    background-color: rgb(207, 201, 225);
    color: rgb(74, 59, 118);
    transform: scale(1.05);
}

@keyframes slideUp {
    0% {
        transform: translateY(100%);
        visibility: visible;
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 736px) {
    .new-shipping .container {
        padding: 15px;
        width: 100%;
    }

    .new-shipping .name,
    .new-shipping .address-info,
    .new-shipping .cc-info {
        flex-direction: column;
    }

    .new-shipping .name div,
    .new-shipping .address-info div,
    .new-shipping .cc-info div {
        width: 100%;
    }

    .new-shipping .btns button {
        width: 100%;
    }
}
