@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root{
    color-scheme: light dark;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}


.bg-login{
    background: linear-gradient(to bottom, rgba(0,0,0,.5), rgba(0,0,0,.5)), url('../images/login-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.position-alert {
    top: 80px;
    right: 50px;
    z-index: 100;
}

.icon_input {
    position: absolute;
    top: 60%;
    right: 1rem;
    color: rgb(161, 161, 161);
}

.btn-personal{
    width: fit-content;
    padding-inline: 1rem;
}


.cursor-pointer{
    cursor: pointer;
}
a.cursor-none{
    cursor: not-allowed;
}


