﻿.login .box .form input[type="text"], .login .box .form input[type="password"] {
    border-radius: 3px;
    border: none;
    color: #333333;
    font-size: 16px;
    height: 46px;
    margin-bottom: 5px;
    padding: 13px 12px;
    width: 100%;
}


.myButton {
    background-color: #ffd123;
    width: 100%;
    height: 60px;
    border-radius: 0px;
    border-color: transparent;
    color: white;
    font-size: large;
    font-weight: 700;
}

.myTextBox {
    border: 1px solid;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: lightgray;
    font-size: large;
    font-weight: 700;
    width: 100%;
    height: 60px;
    padding-left: 10px;
}

.myButton:focus {
    outline: none;
}

textarea:focus, input:focus, input[type]:focus, .uneditable-input:focus {
    border-color: rgba(229, 103, 23, 0.8);
    box-shadow: 0 1px 1px rgba(229, 103, 23, 0.075) inset, 0 0 8px rgba(229, 103, 23, 0.6);
    outline: 0 none;
}