*{
    padding: 0;
    margin: 0;
}

body{
    padding: 0;
    margin: 0;
}

.top{
    width: 100%;
    height: 80px;
    border-bottom: 2px solid #ccc;
    display: flex;
    align-items: center;
    background-color: white;
    position: fixed;
}

.logo{
    margin-left: 40px;
}

.app-name{
    font-size: 20px;
}

.home{
    height: 100vh;
    z-index: 0;
    padding-top: 80px;
    background-color: #e9e9e9;
    min-height: 100vh;
}

.home-title{
    margin-bottom: 20px;
    position: relative;
    padding: 40px 40px;
    max-height: 500px;
    overflow-y: auto;
    z-index: 0;
    height: 100%;
}

.bottom-copyright-items{
    padding: 20px 40px;
    display: flex;
    gap: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
    border-top: #ccc solid 2px;
    background-color: white;
}

.form-section-login{
    width: 400px;
    height: 220px;
    margin: 100px auto;
    background-color: white;
    border: 1px solid #ccc;
    position: relative;
}

.form-section-login form{
    padding: 10px 10px;
    width: 100%;
}

.input-container{
    width: 100%;
    padding: 3px 5px;
    border: #ccc solid 1px;
    border-radius: 3px;
    display: flex;
    align-self: center;
    gap: 5px;
}

.input-container input{
    width: 100%;
    outline: none;
    border: none;
}

.input-container input::placeholder{
    color: #ccc;
}

.input-container i{
    margin-top: 5px;
    color: #ccc;
}

.top-form-section{
    background-color: #f1f1f1;
    width: 100%;
    padding: 5px 10px;
}

.bottom-form-section{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: #f1f1f1;
    border-top: 1px solid #ccc;
}

.form-title{
    color: #ccc;
    font-size: 20px;
    font-weight: bold;
}

.btn-login{
    position: absolute;
    bottom: 10px;
    right: 15px;
    padding: 1px 15px;
    border: none;
    border-radius: 3px;
    background-color: rgb(135, 135, 201);
    color: white;
    transition: all ease-in-out 0.5s;
}

.btn-cancel-login{
    position: fixed;
    top: 25px;
    right: 40px;
    padding: 3px 40px;
    border: none;
    border-radius: 3px;
    background-color: rgb(135, 135, 201);
    color: white;
    transition: all ease-in-out 0.5s;
}

.btn-login:hover, .btn-cancel-login:hover{
    background-color: rgb(110, 110, 179);
}

@media (max-width:960px) {
    .form-section-login{
        width: calc(100%-30px);
    }
}


