
        .btn {
            padding: 10px 20px;
            font-size: 16px;
            line-height: 1.5;
            border: none;
            border-radius: 5px;
            background-color: #49474c;
            color: #fff;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #646268;
        }

    .alerts {
        display: none;
        position: fixed;
        bottom: 10px;
        right: 10px;
        padding: 10px;
        border-radius: 4px;
        font-size: 16px;
        z-index: 9;
    }
    
    .alerts.success {
        background-color: #27ae60;
        color: white;
    }
    
    .alerts.error {
        background-color: #c0392b;
        color: white;
    }

    .mbwidth {
        width: 700px;
    }

    @media (max-width: 992px) {

        .mbwidth {
            width: 340px;
        }

    }
