*{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0px;
}

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

.loginContainer{
    width: 90%;
    max-width: 400px;
    margin-top: 50px;
    box-shadow: 0px 0px 20px black;
    border-radius: 20px;
    overflow: hidden;
}

.banner{
    background-color: black;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bannerContent{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.linkIcon{
    color: white;
    font-size: 30px;
    transition: opacity 0.5s;
    opacity: 0;
}

.imageContainer{
    transition: opacity 0.5s, margin-left 0.5s;
    display: flex;
    flex-direction: column;
}

.bannerImg{
    border-radius: 50%;
    height: 100px;
    width: 100px;
    object-fit: cover;
}

.imageText{
    color: white;
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
}

.loginForm{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    overflow: hidden;
    max-height: 500px;
    transition: max-height 0.5s;
}

h1{
    font-size: 25px;
    text-align: center;
    margin-bottom: 10px;
}

.logoText{
    font-family: monospace;
}

.formInput{
    width: calc(90% - 20px);
    height: 35px;
    outline: none;
    margin-bottom: 20px;
    border-radius: 20px;
    border: 1px grey solid;
    padding-left: 20px;
    font-size: 18px;
}

.loginButton{
    height: 40px;
    width: 90%;
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    cursor: pointer;
}

.registerText{
    cursor: pointer;
}

.permissionForm{
    display: flex;
    flex-direction: column;
    padding: 10px;
    overflow: hidden;
    max-height: 700px;
    transition: max-height 0.5s;
}

h2{
    margin: 10px;
}

.permissionList{
    list-style-type: none;
    padding: 10px;
    margin: 0px;
}

.permissionItem{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.buttonContainer{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 10px;
}

.acceptButton{
    height: 40px;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex:1;
    border-radius: 20px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.cancelButton{
    height: 40px;
    background-color: #CCCCCC;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    border-radius: 20px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.hideForm{
    max-height: 0px;
    padding: 0px;
    margin: 0px;
}


/* Mobile improvements */
@media (max-width: 550px) {
    .loginContainer{
        width: 100%;
        margin-top: 0px;
        border-radius: 0px;
        box-shadow: none;
        max-width: none;
    }
}