/*********************************************btn-submit****************************************/
.btn-submit {
    background-color: #4CAF50; /* Green background */
    border: none;            /* Remove borders */
    color: white;            /* White text */
    padding: 15px 32px;      /* Some padding */
    text-align: center;      /* Centered text */
    text-decoration: none;   /* Remove underline */
    display: inline-block;   /* Get it to line up correctly */
    font-size: 16px;         /* Increase font size */
    margin: 4px 2px;         /* Some margin */
    cursor: pointer;         /* Pointer/hand icon */
    border-radius: 4px;      /* Rounded corners */
    transition-duration: 0.4s; /* Transition effect duration */
}

.btn-submit:hover {
    background-color: white;  /* White background on hover */
    color: black;             /* Black text on hover */
    border: 2px solid #4CAF50; /* Green border on hover */
}

/****************************** btn info ********************************************************/
.btn-info {
    background-color: #17a2b8;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-info:hover {
    background-color: #138496;
}

.btn-info:active {
    background-color: #117a8b;
    transform: scale(0.98);
}

.btn-info:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.5);
}

/*************************************btn danger*********************************************************/
.btn-danger {
    background-color: #dc3545; /* Bootstrap's danger color */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-danger:hover {
    background-color: #c82333; /* Darker shade for hover */
}

.btn-danger:active {
    background-color: #bd2130; /* Even darker shade for active state */
}

.btn-danger:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.5); /* Red focus outline */
}
/**********************************************btn primary*************************************************/
.btn-primary {
    background-color: #007bff; /* Primary color (Bootstrap blue) */
    border: none;             /* Remove default border */
    color: white;             /* White text color */
    padding: 10px 20px;       /* Padding for the button */
    font-size: 16px;          /* Font size */
    cursor: pointer;          /* Pointer cursor on hover */
    border-radius: 4px;       /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth background color transition */
}

/* Hover effect */
.btn-primary:hover {
    background-color: #0056b3; /* Darker shade of blue */
}

/******************************************btn colorful**********************************************************/
.colorful-button {
    background: linear-gradient(45deg, #ff6b6b, #f06595, #845ec2, #ffc75f, #f9f871);
    background-size: 300% 300%;
    border: none;
    border-radius: 12px;
    color: white;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: gradient-shift 3s ease infinite;
}

.colorful-button:hover {
    transform: scale(1.1);
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/****************************************/
