﻿
.mTextBox {
    padding: 10px 15px;
    border: none;
    outline: none;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    font-size: 14px;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    
}

    .mTextBox:hover {
        box-shadow: 0px 10px 15px 3px rgba(0,0,0,0.1);
    }

.mBtn {
    padding: 10px 15px;
    text-decoration: none;
    border: 1px solid #1A179E;
    background-color: #1A179E;
    color: white !important;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    font-size: 14px;
    border-radius: 10px;
    width: 100% !important;
    box-sizing: border-box;
    cursor:pointer;
    transition:all 1s;
}

    .mBtn:hover {
        box-shadow: 0px 10px 15px 3px rgba(0,0,0,0.1);
        color: #1A179E !important;
        background-color: white;
    }

