*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --first-color: rgb(231, 216, 216);
    --second-color: rgb(60, 49, 82);
    --third-color: #1f1f1f;
    --updated-color: rgb(20, 16, 36);
    --hover-color: rgb(60, 49, 82);
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--updated-color);
    min-height: 100vh;
}

.login{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    outline: none;
    border-radius: 8px;
    box-shadow: var(--hover-color) 0px 0px 10px;
    margin-bottom: 10px;
    width: 350px;
    height: 250px;
    background: var(--updated-color);
    overflow: hidden;
}

#title{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--second-color);
    color: var(--first-color);
    width: 350px;
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
}

.username{
    justify-content: center;
    align-items: center;
    padding: 0 0 30px 0;
    border-radius: 8px;
    height: 30px;
    margin-bottom: 25px;
    
}

.password{
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    height: 30px;
    margin-bottom: 25px;
}

.submit{
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    height: 30px;
}

.username input[type='text']{
    border: none;
    outline: none;
    border-radius: 8px;
    width: 250px;
    height: 45px;
    background-color: var(--hover-color);
    color: var(--first-color);
    text-align: center;
}

.password input[type='password']{
    border: none;
    outline: none;
    border-radius: 8px;
    width: 250px;
    height: 45px;
    background-color: var(--hover-color);
    color: var(--first-color);
    text-align: center;
    
}

.submit input[type='submit']{
    border: none;
    outline: none;
    border-radius: 8px;
    width: 250px;
    height: 39px;
    font-size: 16px;
}

::-webkit-input-placeholder {
    color: var(--first-color);
    text-align: center;
 }
 
 .login:hover{
    border:1px solid rgb(117, 25, 236);
    transition: 0.2s;
}
