﻿$primary: rgb(182, 157, 230);
$displacement: 3px;

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html, body {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background: #f3f2f2;
}



.container {
    position: relative;
    z-index: 5;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    
    .logo {
    margin: 0 auto 10vw;
    max-width: 100px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 100%;
    img

{
    width: 100%;
}

}
}

h5 {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    opacity: .85;
}

label {
    font-size: 12.5px;
    color: #000;
    opacity: .8;
    font-weight: 400;
}

h5 {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    opacity: .85;
}

label {
    font-size: 12.5px;
    color: #000;
    opacity: .8;
    font-weight: 400;
}

form {
    width: 300px;
    padding: 40px 30px 20px;
    background-color: #f8f8ff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    h4

{
    margin-bottom: 20px;
    color: rgba(#000, .5);
    span

{
    color: rgba(#000, 1);
    font-weight: 700;
}

}

p {
    font-size: 12px;
    line-height: 155%;
    color: #000;
    opacity: .65;
    max-width: 200px;
    margin-bottom: 40px;
}
}

a.discrete {
    margin-top: 40px;
    margin-left: auto;
    padding-bottom: 4px;
    font-size: 14px;
    font-weight: 300;
    color: rgba(#000, .4);
    border-bottom: solid 1px rgba(#000, 0);
    transition: all .3s ease;
    &:hover

{
    border-bottom: solid 1px rgba(#000, .2);
}
}

button {
    min-width: 100px;
    padding: 8px 38px;
    margin-top: 5px;
    margin-left: auto;
    background-color: #129b76;
    color: white;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 24px;
    box-shadow: 0px 2px 6px -1px rgba(0,0,0,.13);
    outline: 0;
    transition: all .3s ease;
    -webkit-appearance: none;
    &:hover

{
    transform: translateY(-3px);
    box-shadow: 0 2px 6px -1px rgba($primary, .65);
    &:active

{
    transform: scale(.99);
}

}
}

.floating-label {
    position: relative;
    width: 100%;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    padding: 6px 10px 6px 44px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all .3s ease;
    &:hover

{
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

input {
    width: 100%;
    height: 48px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #1f1f1f;
    padding: 14px 10px 6px;
    outline: none;
    &::placeholder

{
    color: transparent;
}

&:focus {
    + label

{
    color: #12919B;
}

}
}

label {
    position: absolute;
    top: 50%;
    left: 44px;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 500;
    color: #6c6c6c;
    pointer-events: none;
    transition: all .25s ease;
}

input:not(:placeholder-shown) + label,
input:focus + label {
    top: 6px;
    font-size: 9px;
    color: #12919B;
    opacity: 1;
}

.icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    svg

{
    width: 100%;
    height: 100%;
    opacity: .5;
    transition: all .3s ease;
    path

{
    fill: #12919B;
}

}
}

input:focus ~ .icon svg {
    opacity: 1;
    transform: scale(1.1);
}

}


.session {
    margin: 90px auto;
    display: flex;
    flex-direction: row;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.left {
    width: 200px;
    min-height: 100%;
    background-image: url('../Files/fondo.jpg');
    background-size: cover;
    background-position: center center;
    // 👈 centra la imagen background-repeat: no-repeat;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    svg

{
    width: auto;
    height: 40px;
    margin: 20px;
}
}

