@import url("https://api.fontshare.com/v2/css?f[]=clash-display@200,300,400,500,600,700,1&display=swap");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:"Clash Display", arial, sans-serif;
    text-decoration: none;
    scroll-behavior: smooth;

}

body{
    overflow-x: hidden;
    background: #111111 ;
}

.container{
    position: relative;
    overflow: hidden;
}

.container p{
    padding: 1rem;
}

.container form{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 100%;
    padding: 100px 150px 50px 150px;
    gap: 30px;
}

.logo {
    margin-bottom: auto;
    z-index: 10;
    transition: all 0.3s ease-out;
}

.logo img {
    width: 90px;
    height: auto;
    display: block;
    padding-top: 50px;
    margin-left: 5px;
    transition: all 0.3s ease-out;
}

.logo img:hover {
    transform: translateY(-5px);
}

.sombra {
    position: absolute;
    top: 30px;
    left: 0;
    width: 90px;
    height: 90px;
    background-color: #fff; 
    border-radius: 50%;
    z-index: -1;
    filter: blur(20px);
    transition: all 0.3s ease-out;
}

.tittle__container {
    width: 70%;
    background-color: #111111;
    display: flex;
    flex-direction: row;
    color: #fff;
    font-size: 60px;
}


.input{
    background-color: #eee;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    width: 100%;
    outline: none;
    margin-top: 30px;
}

.inputSubmit{
    margin-top: 30px;
    padding: 15px 30px;
    font-size: 30px;
    color: #fff;
    border: 4px solid #fff;
    background-color: #111111;
    box-shadow: 4px 4px 0 0 #111111,
                8px 8px 0 0 #fff;
    transition: all 0.3s ease-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.inputSubmit::before{
    z-index: -1;
    content: '';
    background: linear-gradient(to left, #008100, #003000);
    width: 0;
    height: 0;
    border-radius: 50%;
    position: absolute;
    top: var(--eixoY);
    left:var(--eixoX);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-in-out, height 0.6s ease-in-out;
}


.inputSubmit:hover{
    background-color: none;
    box-shadow: 5px 5px 0 0 #111111,
                10px 10px 0 0 #fff;
    transform: translate(-4px,-4px);
}

.inputSubmit:hover::before{
    width: 1000px;
    height: 1000px;
}

.login {
    margin-top: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    opacity: 60%;
    transition: all 0.3s ease-out;
}

.login:hover {
    opacity: 100%;
}

.login__container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.text{
    margin-left: 80px;
    color: #fff;
    text-align: left;
    font-size: 36px;
    font-weight: 200;
}

.erro {
    margin-top: 10px;
    padding: 1rem;
    text-align: center;
    font-size: 20px;
    color: #9c161d;
}

.success {
    margin-top: 10px;
    padding: 1rem;
    text-align: center;
    font-size: 20px;
    color: #008c43;
}

@media (max-width: 1000px) {
    .tittle__container {
        width: 100%;
        font-size: 25px;
    }
    
    .tittle__container h1{
        padding-top: 50px;
    }
    
    .text{
        margin-left: 80px;
        color: #fff;
        text-align: left;
        font-size: 16px;
        font-weight: 200;
    }
    
    .input{
        padding: 5px 10px;
        font-size: 15px;
        width: 100%;
        outline: none;
        margin-top: 10px;
    }

    .erro {
        margin-top: 10px;
        padding: 1rem;
        text-align: center;
        font-size: 12px;
        color: #9c161d;
    }
    
    .success {
        margin-top: 10px;
        padding: 1rem;
        text-align: center;
        font-size: 12px;
        color: #008c43;
    }
    
    .inputSubmit{
        margin-top: 20px;
        padding: 10px 25px;
        font-size: 25px;
        color: #fff;
        border: 2px solid #fff;
        background-color: #111111;
        box-shadow: 2px 2px 0 0 #111111,
                    4px 4px 0 0 #fff;
        transition: all 0.3s ease-out;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    .inputSubmit::before{
        z-index: -1;
        content: '';
        background: linear-gradient(to left, #008100, #003000);
        width: 0;
        height: 0;
        border-radius: 50%;
        position: absolute;
        top: var(--eixoY);
        left:var(--eixoX);
        transform: translate(-50%, -50%);
        transition: width 0.6s ease-in-out, height 0.6s ease-in-out;
    }
    
    
    .inputSubmit:hover{
        background-color: none;
        box-shadow: 3px 3px 0 0 #111111,
                    6px 6px 0 0 #fff;
        transform: translate(-2px,-2px);
    }
    
    .inputSubmit:hover::before{
        width: 1000px;
        height: 1000px;
    }
    
    .login {
        margin-top: 20px;
        color: #fff;
        text-decoration: none;
        font-size: 10px;
        opacity: 60%;
        transition: all 0.3s ease-out;
    }
    
    .login:hover {
        opacity: 100%;
    }
    
    .container form{
        flex-direction: column;
        padding: 50px 75px 25px 75px;
        gap: 10px;
    }
}
