﻿

/* button {
  margin: 20px;
} */
/* Original Styles */
.custom-btn {
    width: 130px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5), 7px 7px 20px 0px rgba(0, 0, 0, .1), 4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
}

.btn-5 {
    width: auto;
    height: 40px;
    line-height: 42px;
    padding: 0px 20px;
    border: none;
    background: #ff9800;
    background: linear-gradient(0deg, #ff9800 0%, #ff9800 100%);
}

    .btn-5:hover {
        color: #ff9800;
        background: transparent;
        box-shadow: none;
    }

    .btn-5:before,
    .btn-5:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        height: 2px;
        width: 0;
        background: #ff9800;
        box-shadow: -1px -1px 5px 0px #fff, 7px 7px 20px 0px #0003, 4px 4px 5px 0px #0002;
        transition: 400ms ease all;
    }

    .btn-5:after {
        right: inherit;
        top: inherit;
        left: 0;
        bottom: 0;
    }

    .btn-5:hover:before,
    .btn-5:hover:after {
        width: 100%;
        transition: 800ms ease all;
    }

/* Media Queries for Responsiveness */

/* Tablet or Medium Screens (max-width: 1024px) */
@media (max-width: 1024px) {
    .custom-btn {
        width: 100%; /* Make the button full-width */
        padding: 10px 15px; /* Adjust padding */
        font-size: 14px; /* Adjust font size */
        height: auto; /* Allow the height to adjust automatically */
    }

    .btn-5 {
        line-height: 20px;
    }
}

/* Small Screens (max-width: 768px) */
@media (max-width: 768px) {
    .custom-btn {
        width: 100%; /* Make the button full-width */
        padding: 8px 15px; /* Adjust padding */
        font-size: 13px; /* Adjust font size */
        height: auto; /* Allow the height to adjust automatically */
    }
}

/* Extra Small Screens (max-width: 480px) */
@media (max-width: 480px) {
    .custom-btn {
        width: 100%; /* Make the button full-width */
        padding: 6px 12px; /* Adjust padding */
        font-size: 12px; /* Adjust font size */
        height: auto; /* Allow the height to adjust automatically */
    }
}


.btn-blue {
    background: #25426c;
    background: linear-gradient(0deg, #25426c 0%, #25426c 100%);
}

    .btn-blue:hover {
        color: #25426c;
    }

    .btn-blue:before,
    .btn-blue:after {
        background: #25426c;
    }

    .btn-blue:after {
        right: inherit;
        top: inherit;
        left: 0;
        bottom: 0;
    }
