main {
    background-color: #15151E;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 81vh;
}

.login {
    padding: 80px 100px;
    box-shadow: 0 0 20px 10px black;
    border: 1px solid black;
    border-radius: 10px;
    background-color: #E10600;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h2 {
    text-align: center;
    font-size: 30px;
    width: 100%;
    height: 40px;
    box-shadow: 0 5px 10px 1px black;
    margin-bottom: 30px;
}

.login-btn {
   font-size: 17px;
    background-color: white;
    border: 0;
    box-shadow: 0 0 2px 1px black;
    padding: 5px 17px;
    margin-top: 10px;
    border-radius: 5px;
    transition: all ease-in-out 0.15s; 
}

.login-btn:hover {
    box-shadow: 0 0 7px 3px black;
}


.register-btn {
    font-size: 17px;
    background-color: white;
    border: 0;
    box-shadow: 0 0 2px 1px black;
    padding: 5px 17px;
    margin-top: 10px;
    border-radius: 5px;
    transition: all ease-in-out 0.15s;
}

.register-btn:hover {
    box-shadow: 0 0 7px 3px black;
}

label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

input {
    height: 25px;
    font-size: 17px;
    border: 2px solid black;
    padding-left: 10px;
}

input:focus {   
    outline: none;
    box-shadow: 0 0 15px 2px;
    transition: all ease-in-out 0.15s;
}

img {
    width: 40px;
}

p {
    padding-top: 50px;
}