
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    font-family: 'Poppins', sans-serif;

    background-image: linear-gradient(to right, #f39822 , #f38022 , #ea4d2a);

    height: 95%;
}

input::placeholder{
    color: #0a0a0a;
    opacity: 0.3;
}

.area-login {
    background-color: #fdfdfd;
    
    padding: 50px 40px;

    border-style: solid;
    border-width: 1px;
    border-color: #999;
    border-radius: 10px;

    width: 35%;
    height: auto;

    box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.75);
}

body button {
    background-image: linear-gradient(to right, #d139ca, #d3336f, #f40004);
    border-width: 0;
    width: 110px;
    height: 35px;
    color: white;

    filter: contrast(1);

    transition: all 0.3s;
}

body button:hover {
    cursor: pointer;
    filter: contrast(0.7);
}

.text-container img {
    margin-bottom: 20px;
}

.button-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-container button {
    width: 100%;
    height: 40px;
    border-radius: 7px;
    font-size: 18px;
    font-weight: 700;
}

.login-container {
    display: flex;
    flex-direction: column;
}

.login-container input {
    padding-left: 10px;
    background-color: #fdfdfd;

    width: auto;
    height: 35px;

    border-radius: 5px;
    border-width: 1px;
    border-style: none;

    font-size: 18px;

    padding:8px;
    display:block;
    border:none;
    border-bottom:1px solid #8f1838;
    width:100%;

    outline: none;
}

.password-container input {
    padding-left: 10px;
    background-color: #fdfdfd;

    width: auto;
    height: 35px;
    
    border-radius: 5px;
    border-width: 1px;
    border-style: none;

    font-size: 18px;

    padding:8px;
    display:block;
    border:none;
    border-bottom:1px solid #8f1838;
    width:100%;

    outline: none;
}


.password-container {
    display: flex;
    flex-direction: column;
}

.login-name {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-container h3{
    margin-top: -40px;
    font-weight: 200;
    font-size: 22px;
}

@media (max-width: 1200px) {
    .area-login {
        background-color: #fdfdfd;
        
        padding: 50px 40px;
    
        border-style: solid;
        border-width: 1px;
        border-color: #999;
        border-radius: 5px;
    
        width: 50%;
        height: auto;
    
        box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.75);
    }
    
}

@media (max-width: 718px) {
    .area-login {
        background-color: #fdfdfd;
        
        padding: 50px 40px;
    
        border-style: solid;
        border-width: 1px;
        border-color: #999;
        border-radius: 5px;
    
        width: 70%;
        height: auto;
    
        box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.75);
    }
    
}

@media (max-width: 516px) {
    .area-login {
        background-color: #fdfdfd;
        
        padding: 50px 40px;
    
        border-style: solid;
        border-width: 1px;
        border-color: #999;
        border-radius: 5px;
    
        width: 80%;
        height: auto;
    
        box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.75);
    }
    
}


