﻿body {
    /*width: 100%;
            height: 100%;*/
    background-color: #4070f4;
}

.mycontainer {
   min-height: 100vh;
    /*width: 100%;*/
    background-color: #4070f4;
}

.myForm {
    max-width: 430px;
    width: 430px;
    padding: 30px;
    border-radius: 6px;
    background: #fff;
}

.loginHeader {
    font-size: 28px;
    font-weight: 600;
    color: #232836;
    text-align: center;
}

form .field {
    height: 50px;
    width: 100%;
    margin-top: 20px;
    position: relative;
}

.field input, field button {
    height: 100%;
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 400;
    border-radius: 6px;
}

.field button {
    background-color: #0171d3;
    transition: all 0.3s ease;
    color: white;
    font-weight: 500;
}

    .field button:hover {
        background-color: #016dcb;
        color: white;
    }

.field input {
    border: 1px solid #CACACA;
    padding: 0 36px;
}

    .field input:focus {
        border-bottom-width: 2px;
    }

        .field input:focus .iconset {
            color: #4070f4;
        }

.eyeIcon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #8b8b8b;
    padding: 5px;
}

.iconset {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #8b8b8b;
    padding: 5px;
}

    .iconset:focus {
        color: #4070f4;
    }

.field input:focus > iconset {
    color: #4070f4;
}
