40 lines
789 B
SCSS
40 lines
789 B
SCSS
@use "../variables" as *;
|
|
|
|
.login-btn {
|
|
display: inline-block;
|
|
padding: 12px 400px;
|
|
background: $color-primary;
|
|
color: white;
|
|
border-radius: $border-radius-lg;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
font-size: 1rem;
|
|
cursor: pointer;
|
|
border: none;
|
|
transition: all 0.2s ease-in-out;
|
|
margin-bottom: 15px;
|
|
|
|
&:hover {
|
|
background: $color-primary-hover;
|
|
transform: scale(1.05);
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
|
|
}
|
|
}
|
|
|
|
.logout-btn {
|
|
display: inline-block;
|
|
padding: 10px 20px;
|
|
background: $color-logout;
|
|
color: white;
|
|
border-radius: $border-radius-lg;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
transition: 0.2s ease-in-out;
|
|
margin-bottom: 20px;
|
|
|
|
&:hover {
|
|
background: $color-logout-hover;
|
|
transform: scale(1.05);
|
|
}
|
|
}
|