@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap');

:root {
    --principal: #FFFFFF;
    --secundaria: #F2F6FC;
    --secundaria-hover: #edf0f5;
    --verde-bio-principal: #00582D;
    --verde-bio-secundaria: #00371c;
    --border-color: #cbcfd4;
    --second-border-color: rgb(119, 119, 119);
}

* {padding: 0; margin: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif;}

.warning_content {
    width: 700px; height: auto;
    position: fixed;
    transition: .5s;

    padding: 20px;
    border-radius: 10px;
    text-align: center;

    background-color: rgba(255, 0, 0, 0.842);

    z-index: 99;
    color: #ffffff;

    transform: translateX(-50%);
    left: 50%;
}

.warning_content.active {
    top: 50px;
}

.form_content {
    width: 100%; height: 93vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secundaria);
}

.logo img {
    width: 140px; height: auto;
}

form {
    width: 100%;
    max-width: 500px;
    padding: 40px;
    background: var(--principal);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

form .line {
    width: 100%; height: 35px;
    display: flex;
    position: relative;
    margin: 20px 0;
}

form .line input {
    width: 100%; height: 100%;
    outline: none;
    font-size: 10pt;
    transition: all 0.3s ease;
    padding: 5px;
}

form .line label {
    position: absolute;
    background-color: var(--principal);    
    left: 9px; top: 8px;
    transition: .3s;
    font-size: 10pt;
    cursor: text;
}

form .line input:focus ~ label,
form .line input:not(:placeholder-shown) ~ label {
    font-size: 8pt;
    left: 10px; top: -7px;
    padding: 0 5px;
}

form input[type="submit"] {
    width: 100%; height: 35px;
    border: none;
    outline: none;
    background-color: var(--verde-bio-principal);
    color: var(--principal);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12pt;
    font-weight: 500;
}

form input[type="submit"]:hover {
    opacity: .95;
}