Files
tsdm_web/src/app/(Admin)/login/login.module.css

68 lines
1.1 KiB
CSS
Raw Normal View History

2025-12-30 14:42:30 +07:00
.container {
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-image: linear-gradient(to top right, #240e00, #823c03);
}
.login_container {
width: 80%;
max-width: 900px;
height: 500px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 10px;
overflow: hidden;
box-shadow: rgba(0, 0, 0, 0.119) 0px 0px 15px;
}
.login_hero {
width: 60%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.login_image {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
transition: all 0.5s ease-in-out;
&:hover {
transform: scale(1.1);
.image {
opacity: 1;
}
}
}
.image {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
overflow: hidden;
float: left;
opacity: 0.7;
transition: all 0.5s ease-in-out;
}
.login_box {
width: 40%;
height: 100%;
min-width: 360px;
padding: 10px;
display: flex;
justify-content: center;
align-items: center;
background-color: #f8feff;
}