*{
    margin: 0;
    padding: 0;
}

:root{
    --first-color: #CCD4DD;
    --second-color: #141E1D;
    --third-color: #446063;
    --greenColor: #45AC42;
}

body{
    background-color: var(--first-color);
}

.wrapper{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
    background-color: var(--first-color);
}


.LogIn{
    display: flex;
    width: 35%;
    height: 500px;
    justify-content: center;
    opacity: 0.9;
    background-color: var(--first-color);
    border-radius: 1.5em;
    box-shadow:0px 0px 10px;
    flex-wrap: wrap;

    margin: 100px auto;
    
}

.LogIn .title{
    width: 80%;
    height: 40px;
    margin: 5px auto;
    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0.8;
}

.title>p{
    color: var(--fifth-color);
    font-size: 3em;
    justify-content: center;
    font-weight: bold;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

form{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.input{
    width: 70%;
    height: 30px;
    border: none;
    border-bottom: 5px solid var(--fifth-color);
    color: var(--fifth-color);
    background-color: rgba(111, 111, 111, 0);
    font-size: 30px;
    text-indent: 30px;
    padding: 4px;

    opacity: 0.8;
    border-radius: 0.3em;
    box-shadow: 0px 0px 2px 0px var(--second-color);
}

.input:autofill{
    color: var(--fifth-color);
    background-color: rgba(111, 111, 111, 0);
    font-size: 30px;
}

.input::placeholder{
    color: var(--fifth-color);
    font-size: 1em;
}

.input:focus{
    outline: none;
}

.submit{
    width: 55%;
    height: 40px;
    background-color: var(--third-color);
    color: var(--first-color);
    border-radius: 10px;
    font-size: 25px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: bold;
    transition: 0.3s;
    border: none;
}

.submit:hover{
    transform: scale(1.3);
    transition: 0.3s;
    cursor: pointer;
}

.warning{
    width: 70%;
    height: 30px;
    border: none;
    color: rgb(142, 21, 21);
    background-color: rgba(134, 27, 27, 0.279);
    font-size: 26px;
    text-indent: 30px;
    padding: 4px;
    font-weight: bold;
    border-radius: 0.3em;
    /* box-shadow: 0px 0px 2px 0px var(--second-color); */
}