﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    background-color: #0f172a;
}

main {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    width: 50%;
    height: 100%;
    min-height: 800px;
    position: relative;
    top: 0;
    left: 0;
}

.loginheader {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 80%;
}

.LoginForm {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.header-emp-logo {
    width: 35%;
}

.login-emp-logo {
    display: none;
}

.Headerblur {
    position: absolute;
    top: 0;
    width: 60%;
    height: auto;
}

.Headerblur-mobile {
    display: none;
    position: absolute;
    top: 0;
    width: 60%;
    height: auto;
}

.Headerdecoration {
    position: absolute;
    bottom: 0;
    width: 55%;
    height: auto;
}

.Headerdecoration-mobile {
    display: none;
    position: absolute;
    bottom: 0;
    width: 55%;
    height: auto;
}

.bg-color {
    background-color: #fff;
}

h1 {
    color: #e2e8f0;
    font-size: 5rem;
    font-weight: 400;
}

h2 {
    color: #64748b;
    font-size: 3rem;
    font-weight: normal;
}

p {
    color: #e2e8f0;
}

.Login-color {
    color: #64748b;
}

.forminput {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

label {
    font-size: 1.3rem;
    font-weight: 300;
    color: #64748b;
}

input {
    width: 100%;
    background-color: #fff;
    border: solid 2px #cbd5e1;
    padding: 0.7rem 0.7rem 0.7rem 1rem;
    border-radius: 18px;
    color: #0f172a;
}

.InputSenha {
    display: flex;
    flex-direction: row;
}

.InputSenha-icon {
    margin-left: -40px;
    cursor: pointer;
}

button {
    transition: 0.4s;
    border: none;
    background-color: #0f172a;
    color: #ffffff;
    padding: 0.8rem;
    border-radius: 18px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: inset 0 1px 0 0 rgb(255 255 255 / 5%);
}

    button:hover {
        transition: 0.4s;
        transform: scale(1.1);
        color: #ffffff;
        box-shadow: #263d74a4 0px 25px 20px -20px;
    }

.social {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: 18px;
    width: 55px;
    height: 55px;
}

a {
    text-decoration: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icons-img {
    width: 75%;
    height: auto;
}

@media (max-width: 2560px) {
    h1 {
        font-size: 4.5rem;
    }

    .Headerblur {
        width: 70%;
    }

    .header-emp-logo {
        width: 20%;
    }

    .Headerdecoration {
        width: 40%;
    }
}

@media (max-width: 1920px) {
    h1 {
        font-size: 5rem;
    }

    .Headerblur {
        width: 80%;
    }

    .header-emp-logo {
        width: 30%;
    }

    .Headerdecoration {
        width: 50%;
    }
}

@media (max-width: 1366px) {
    section {
        min-height: 600px;
    }

    h1 {
        font-size: 4rem;
    }

    .Headerblur {
        width: 100%;
    }

    .Headerdecoration {
        width: 50%;
    }

    .loginheader {
        width: 90%;
    }

    .LoginForm {
        width: 55%;
    }
}

@media (max-width: 1200px) {
    h1 {
        font-size: 4rem;
    }

    .Headerblur {
        width: 100%;
    }

    .Headerdecoration {
        width: 90%;
    }

    .loginheader {
        width: 90%;
    }

    .LoginForm {
        width: 55%;
    }
}

@media (max-width: 992px) {
    .Headerblur {
        width: 100%;
    }

    .Headerdecoration {
        width: 90%;
    }

    h1 {
        font-size: 3rem;
    }

    p {
        font-size: 0.8rem;
    }

    .loginheader {
        width: 90%;
    }

    .LoginForm {
        width: 55%;
    }
}

@media (max-width: 768px) {
    main {
        flex-direction: column;
    }

    .header {
        display: none;
    }

    section {
        width: 100%;
        height: 100vh;
        min-height: auto;
    }

    .LoginForm {
        width: 50%;
    }

    .bg-color {
        background-color: transparent;
    }

    h2 {
        display: none;
    }

    .login-emp-logo {
        display: block;
        width: 50%;
        height: auto;
    }

    label {
        color: #e2e8f0;
    }

    input {
        background-color: #1e293b;
        border: solid 1px #64748b;
        color: #fff;
    }

    button {
        background: linear-gradient(180deg, #2260ff 0%, rgba(0, 71, 255, 0.66) 100%);
    }

    .Headerblur-mobile {
        display: block;
        width: 80%;
    }

    .Headerdecoration-mobile {
        display: block;
        width: 35%;
    }

    .social-icons {
        border: solid 2px #64748b;
    }
}

@media (max-width: 500px) {
    .LoginForm {
        width: 70%;
    }

    .Headerblur-mobile {
        width: 100%;
    }

    .Headerdecoration-mobile {
        width: 50%;
    }
}

@media (max-width: 425px) {
    .LoginForm {
        width: 85%;
    }

    .Headerblur-mobile {
        display: block;
        width: 100%;
    }

    .Headerdecoration-mobile {
        display: block;
        width: 70%;
    }

    .social-icons {
        width: 55px;
        height: 55px;
    }

    .social-icons-img {
        width: 85%;
    }
}

@media (max-width: 320px) {
    .LoginForm {
        width: 85%;
    }

    .Headerblur-mobile {
        display: block;
        width: 100%;
    }

    .Headerdecoration-mobile {
        display: block;
        width: 70%;
    }

    .social-icons {
        border: solid 2px #64748b;
        width: 45px;
        height: 45px;
    }

    .social-icons-img {
        width: 80%;
    }
}
