.form {
    width: 800px;
    height: 400px;
    background-color: #fff;
    margin: 60px auto;
}

/* Logotipo */
.logotipo  {
    background-color: #f5f5f5;
    height: 400px;
    border-right: 2px solid #e0e0e0;
}

.logotipo img {
    margin: auto;
    display: block;
    width: 350px;
    padding-top: 10px;
}

/* Login */
.login {
    position: absolute;
    margin-top: 40px;
    width: 350px;
    padding: 30px;
}

.login .signup {
    opacity: 0;
    pointer-events: none;
}

.login .show-signup .login .signup {
    opacity: 1;
    pointer-events: auto;
}

.login h5 {
    margin-top: 10px;
    font-weight: 600;
    color: #252525;
    text-align: center;
}

.field {
    position: relative;
    height: 45px;
    width: 100%;
    margin-top: 20px;
    border-radius: 6px;
}

.field input,
.field button {
    height: 100%;
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 400;
    border-radius: 6px;
}

.field input {
    outline: none;
    padding: 0 15px;
    border: 1px solid#1a1a1a;
}

.field input:focus {
    border-bottom-width: 2px;
}

.eye-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #8b8b8b;
    cursor: pointer;
    padding: 5px;
}

.field button  {
    font-weight: 500;
    background-color: #2f302f;
    transition: all 0.3s ease;
    cursor: pointer;
}

.field button:hover {
    background-color: #000000;
}

.field button a {
    color: #fff;
}

.field button a:hover {
    color: #fff;
    text-decoration: none;
}

.form-link {
    text-align: right;
    margin-top: 10px;
}

.login a {
    color: #313131;
    text-decoration: none;
}

.login a:hover {
    text-decoration: underline;
    color: #454545;
}
