﻿body {
    font-family: Poppins;
    margin: 0;
    padding: 3rem 12px 5rem 12px;
    background-color: #f3f3f9;
}

.background {
    position: absolute;
    inset: 0;
    height: 380px;
    width: 100%;
    overflow: hidden;
    z-index: 0;
}

.imagen {
    position: absolute;
    inset: 0;
    background-image: url(/assets/imagenes/login.jpg);
    background-position: center;
    background-size: contain;
    transform: scale(2);
    z-index: 1;
}

.background-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #364574, #405189);
    opacity: 0.93;
    z-index: 2;
}

.shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}

    .shape svg {
        width: 100%;
        height: auto;
        display: block;
    }

.contenido {
    position: relative;
    z-index: 10;
}

.btn-login {
    background-color: #0ab39c;
    color: white;
    letter-spacing: 1px;
    font-weight: 500;
    width: 100%;
    font-size: 13px;
    padding: .5rem .9rem;
}

    .btn-login:hover {
        background-color: #099885;
        color: white;
    }

.logo-tekhne {
    position: relative;
}

    .logo-tekhne:after {
        content: "";
        position: absolute;
        width: calc(100% - 32px);
        height: 1px;
        left: 16px;
        right: 0;
        border-top: 1px dashed #cacaca;
        top: 38px;
    }