/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 25 Jun 2020, 01:52:12
    Author     : enkhzolsanchir
*/
input[type=text], input[type=password] {
    width: 90%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ed3e9e;
    border-radius: 10px;
    box-sizing: border-box;
}
input[type=text]:focus, input[type=password]:focus {
    outline: none !important;
    border: 1px solid #2bb7e2;
    border-radius: 10px;
    box-sizing: border-box;
}
.blueButton{
    background-image: linear-gradient(to right, #2bb7e2 , #1E90FF);
    color:white;
    width: 50%;
    height: 45px;
    line-height: 22.5px;
    padding: 4px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 0px solid #ed3e9e;
    border-radius: 22.5px;
    box-sizing: border-box;
    cursor:pointer;
}
.blueButton:focus{
    outline: none !important;
}
.blueButton:active{
    opacity: 0.8;
}


.loginLogo{
    position:relative;
    display: block;
}
.loginLogo .loginTitle{
    font-size: 20px;
}

.loginLogo .voicewave{
    position:absolute;
    width: 100%;
    top: 10%;
    left: 5%;
    height: auto;
}

.newRegister{
    cursor:pointer;
    color: #1E90FF;
}
