.form {
    width: 100%;
}

input[type=text], input[type=password], textarea{
    transition: 0.1s ease-in;

    width: 350px;
    height: 45px;
    background-color: #fafafa;
    color: rgb(39, 39, 39);
    border: 1px solid #353535;
    border-radius: 5px;
    float:left;

    font-size: 24px;
    line-height: 1.08349;
    font-weight: 600;
    letter-spacing: -.003em;
    font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

input[type=text]:hover, input[type=password]:hover .form-go:hover, input[type=date]:hover, .dateSearch:hover, textarea{
    transition: 0.1s ease-in;
    border: 1px solid #5f5f5f;
}
input[type=text]:focus, input[type=password]:focus, input[type=date]:focus, .dateSearch:focus, textarea{
    transition: 0.1s ease-in;

    border: 1px solid #c9c9c9;
    outline: none;
}

input[type=date], .dateSearch{
    transition: 0.1s ease-in;

    width: 100%;
    height: 35px;
    background-color: #ffffff;
    color: rgb(39, 39, 39);
    border: 1px solid #353535;
    border-radius: 5px;
    float:left;

    font-size: 20px;
    line-height: 1.08349;
    font-weight: 600;
    letter-spacing: -.003em;
    font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
input[type=date]:hover{
    cursor: pointer;
}

input[type=text] .jobSearch{
transition: 0.1s ease-in;

    width: 100%;
    height: 35px;
    background-color: #ffffff;
    color: rgb(39, 39, 39);
    border: 1px solid #353535;
    border-radius: 5px;
    float:left;

    font-size: 20px;
    line-height: 1.08349;
    font-weight: 600;
    letter-spacing: -.003em;
    font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}


input[type=checkbox]{
    width: 35px;
    height: 35px;

    border: 1px solid #353535;
    border-radius: 5px;
    float:left;
}

.form-go:active{
    transition: 0.1s ease-in;

    border: 1px solid #c9c9c9;
    outline: none;
}

.form-go{
    display:table-cell;

    height: 45px;
    width: 100px;
    background-color: #ffffff;
    color: rgb(43, 43, 43);
    border: 1px solid #353535;
    border-radius: 5px;
    margin-left: 5px;
    float: left;
}

.login-fields{
    padding: 50px;
}

.header-gradient{
    height: 135px;
    
    background-color: #cfae6f;
}



.login-logo-1{
    width: 35%;
    padding-left: 50px;
}
.login-logo-2{
    width: 80%;
}
.login-logo-3{
    width: 200px;
}


.radio-button-button {
    width: 150px;
    height: 20px;
    padding: 5px;
    position: relative;
    border-radius: 5px;
}

.radio-button-button label,
.radio-button-button input {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 20px;
    transition: .11s;

}


.radio-button-button input[type="radio"] {
    opacity: 0.011;
    z-index: 100;
}

.radio-button-button input[type="radio"]:checked + label {
    background: #cfae6f;
    color: white;
    border-radius: 4px;
    transform: translateX(15px);
    transition: .11s;
}

.radio-button-button input[type="radio"]:hover + label {
    background: #c4c4c4;
    border-radius: 4px;
    transition: .05s;
}

.radio-button-button label {
    cursor: pointer;
    z-index: 90;
    line-height: 1.8em;
}

.radio-image{
    height: 20px;
}


.green-button{
    color: rgb(7, 95, 15);
    background-color: #a9cfb3;

    border: 1px solid #375740;
    border-radius: 4px;

    margin-right: 10px;

    transition: .11s;
}
.green-button:hover{
    color: rgb(18, 119, 27);
    
    background-color: #b3dfbe;

    transition: .11s;
}
.green-button:active{
    color: rgb(20, 92, 26);
    
    background-color: #7c9983;

    transform: translateY(-25px);

    transition: .11s;
}

.yellow-text-box{
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;

    margin-bottom: 5px;

    width: auto;
    display: inline-block;
    background-color: #f5e5ae;
    border-radius: 3px;
    color:#615424;
    font-size: 13px;
}


.console-container {
  background: #121212;
  border-radius: 7px;
  font-family: monospace;
  box-shadow: inset 0 0 10px #000000aa;
  margin-bottom: 1rem;
  height: 300px;
  width: 98%;
  overflow-y: auto;
}
.console-container p{
    color: white;
    padding-left: 2px;
    margin: 0;
}