/********* BODY */

body {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color:#fff;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    overflow: hidden;
}

::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
    color: #a7a7a7;
}

/********* CONTENT */

.content {
    width: 340px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}

.logo {
    width: 340px;
    height: 160px;
    background-image: url('../img/logo_kohesion2.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    margin: 0 auto;
    margin-bottom: 20px;
}

form {
    width: 320px;
    height: auto;
    margin: 0 auto;
    position: relative;
}

.input {
    width: 100%;
    height: 28px;
    margin: 0 auto;
    margin-top: 30px;
    display: flex;
    border-bottom: 1px solid #393f4f;
}

.icono-input {
    width: 30px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    font-size: 15px;
    color: #333333;
}

.textfield {
    width: calc(100% - 50px);
    height: 28px;
    line-height: 28px;
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #5b5b5b;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.textfield::placeholder {
    color: #5b5b5b;
}

.mostrarclave {
    width: 20px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    color: #5b5b5b;
    font-size: 14px;
}

.label {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: right;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 11px;
    color: #808080;
    cursor: pointer;
}

.btnlogin {
    width: 100%;
    height: 38px;
    line-height: 38px;
    text-align: center;
    margin: 0 auto;
    margin-top: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    background: rgb(238, 120, 29);
    background: linear-gradient(
      325deg,
      rgba(144, 171, 38, 1) 0%,
      rgba(239, 181, 0) 56%,
      rgba(238, 120, 29) 100%
    );
    cursor: pointer;
}