Files
front-AT/app/Components/Login/Login.css
T
2025-09-03 20:41:25 -04:00

32 lines
462 B
CSS

.login {
width: 300px;
}
.center{
display: grid;
grid-template-columns: auto 400px;
justify-content: center;
align-items: center;
}
.relative {
position: relative;
}
.eyeClose,
.eyeOpen {
position: absolute;
right: 10px;
bottom: -1px;
transform: translateY(-50%);
width: 20px;
height: 20px;
background-size: cover;
cursor: pointer;
}
@media(max-width:800px){
.center{
display: flex;
}
}