@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf');
    /* IE9 Compat Modes */
}


/* use the font */

body * {
    font-family: 'Roboto', sans-serif;
}

body {
    font-family: Roboto;
    padding: 0;
    margin: 0;
    background: url('../imgs/bg.png');
}

.intersect {
    position: absolute;
    background: url('../imgs/Intersect.png');
    transform: matrix(-0.99, -0.16, -0.16, 0.99, 0, 0)
}

.logo {
    margin-top: 135px;
    margin-bottom: 76px;
}

.form {
    padding: 65px 48px;
    width: 520px;
    background: #FFFFFF;
    box-shadow: 2px 2px 16px rgba(81, 81, 81, 0.15);
    border-radius: 20px;
}

.form .title {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
}

.form .text1 {
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 39px;
}

.form .text2 {
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
}

.pwd-container {
    margin-top: 22px;
    margin-bottom: 34px;
}

input:focus {
    outline: none;
}

.forgot-password {
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 35px;
}

.text3 {
    font-size: 12px;
    line-height: 14px;
    color: #000000;
}

a {
    color: #002CC9 !important;
}

.circle1 {
    position: absolute;
    top: 675px;
    right: 0;
}

.circle3 {
    position: absolute;
    top: 211px;
    right: 20%;
}

.login-btn {
    opacity: 0;
    background: #00A0DC;
    margin: 0;
    padding: 0;
    box-shadow: 2px 2px 6px rgba(81, 81, 81, 0.15);
    border-radius: 18px;
    width: 0px;
    height: 68px;
    font-family: Roboto;
    font-weight: bold;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
}

.loginEmail-btn {
    opacity: 0;
    background: #00A0DC;
    margin: 0;
    padding: 0;
    box-shadow: 2px 2px 6px rgba(81, 81, 81, 0.15);
    border-radius: 18px;
    width: 0px;
    height: 68px;
    font-family: Roboto;
    font-weight: bold;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
}

    .loginEmail-btn:focus {
        background: #00A0DC;
        border: 2px solid #1BB8F3;
        outline: none;
        box-sizing: border-box;
    }
.login-btn:focus {
    background: #00A0DC;
    border: 2px solid #1BB8F3;
    outline: none;
    box-sizing: border-box;
}


.loginEmail-btn:active {
    background: #3D8EBC;
}
.login-btn:active {
    background: #3D8EBC;
}

.loginEmail-btn:hover {
    background: #65B8E7;
}
.login-btn:hover {
    background: #65B8E7;
}
.loginEmail-btn {
    transition: 0.3s;
}
.login-btn {
    transition: 0.3s;
}

.input-group {
    position: relative;
}

.input-group .icons {
    cursor: pointer;
    width: 68px;
    height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
}

.input-group .icons .hidden,
.input-group .icons .show {
    display: flex;
    align-items: center;
    position: relative;
}

.input-group .icons .hidden .eye,
.input-group .icons .show .eye {
    transform: translate(-100%, -50%);
}

.input-group .icons .hidden .hand {
    transform: translate(-50%, -50%);
}

.input-group .icons .show .hand {
    transform: translate(0%, -50%);
}

.input-group .icons .hidden img,
.input-group .icons .show img {
    top: 50%;
    left: 50%;
    position: absolute;
}