﻿html, body {
    height: 100%;
    font-family: Open Sans;
    font-size: 16px;
    padding: 0;
    margin: 0;
}

    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.75)), url("../images/10.jpg");
        background-position: center;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        z-index: -1;
    }

.contenedor {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.div-base {
    background-color: rgba(58, 58, 58, 1);
    width: 450px;
    max-width: 450px;
    border-radius: .2rem;
    box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.9);
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.9);
    -moz-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.9);
}

.img-div {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .img-div img {
        height: 60px;
    }

.cuerpo {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.top {
    background-color: #ffa009;
    --p: 10%;
    height: 34px;
    width: fit-content;
    min-width: 154px;
    aspect-ratio: 1;
    clip-path: polygon(var(--p) 100%, calc(100% - var(--p)) 100%, 100% 0, 0 0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.div-base {
    padding: 24px;
}

.input {
    width: 100%;
    border-radius: .2rem;
    border: 1px solid #cacaca;
    background-color: #F9FAFB;
    padding: .25rem .5rem;
    box-shadow: none !important;
    font-weight: 500;
    padding-left: 32px;
}

    .input:focus, .input:focus-visible {
        border-color: #ffa009 !important;
        box-shadow: 0 0 5px #ffa009 !important;
        background-color: #FFF;
        outline: none;
    }

    .input::placeholder {
        color: #989898 !important;
        font-weight: 600 !important;
    }

.icono {
    position: absolute;
    top: 5px;
    left: 5px;
    color: #5f6368;
    user-select: none;
}

@media only screen and (max-width:480px) {
    .contenedor {
        padding: 6px;
        height: fit-content;
        min-height: 100%;
    }

    .div-base {        
        width: 308px;
    }
}