﻿/* SignUp button style */
.btn-signup {
    background: linear-gradient(45deg, #ffa600, #ff8c00);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-signup:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(255, 166, 0, 0.4);
        background: linear-gradient(45deg, #ffa600, #ff8c00) !important;
        color: white;
    }
/* modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .modal-overlay.show {
        opacity: 1;
        visibility: visible;
    }

/* Slice model from right */
.sidebar-modal {
    position: fixed;
    top: 0;
    right: -450px;
    width: 420px;
    height: 100%;
    background: white;
    z-index: 1055;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 9pt;
}

    .sidebar-modal.show {
        right: 0;
    }

/* Modal content */
.modal-content-custom {
    padding: 0;
    border: none;
    border-radius: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modal-header-custom {
    background: linear-gradient(135deg, #fcbd49 0%, #ffa600 100%);
    color: white;
    padding: 25px 30px;
    border-bottom: none;
    position: relative;
}

.modal-title-custom {
    font-size: 28px;
    font-weight: 300;
    margin: 0;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .close-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }

.modal-body-custom {
    padding: 15px 30px;
    flex: 1;
    background: #f8f9fa;
}

/* Form styles */
.form-group-custom {
    margin-bottom: 25px;
    position: relative;
}

.form-control-custom {
    border: 1px solid #ccc;
    border-radius: 5px;
    background: white;
}

    .form-control-custom:focus {
        border-color: #ffa600;
        outline: none;
    }

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
    font-size: 8pt;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #fcbd49 0%, #ffa600 100%);
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .btn-primary-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(255, 166, 0, 0.3);
    }

/* Checkbox custom */
.checkbox-custom {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

    .checkbox-custom label {
        text-align: justify;
    }

    .checkbox-custom input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-right: 12px;
        accent-color: #ffa600
    }

    .checkbox-custom a {
        color: #ffa600
    }

.business-type-other {
    display: none;
}

/* Responsive */
@media (max-width: 480px) {
    .sidebar-modal {
        width: 100%;
        right: -100%;
    }

    .modal-header-custom {
        padding: 20px;
    }

    .modal-body-custom {
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .sidebar-modal {
        top: auto;
        bottom: -100%;
        right: 0;
        left: 0;
        width: 100%;
        height: 95vh;
        max-height: 750px;
        border-radius: 20px 20px 0 0;
        transition: bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
    }

        .sidebar-modal.show {
            bottom: 0;
            right: 0;
        }
}
