updated login page styling

This commit is contained in:
2025-09-04 15:53:13 +03:00
parent 28ffe00464
commit b887ac2624
3 changed files with 77 additions and 11 deletions

View File

@ -6,6 +6,7 @@
justify-content: space-between;
}
.login-right {
display: flex;
height: 100%;
@ -26,9 +27,61 @@
}
.login-block {
.login-logo-block {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-bottom: auto;
outline: solid 1px khaki;
}
.login-login-block {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
outline: solid 1px aquamarine;
}
.login-links-block {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
margin-top: auto;
margin-bottom: 2vh;
outline: solid 1px olive;
font-size: xx-small;
}
.login-button {
margin-top: "10px";
padding: 16px 32px;
font-size: 16px;
border-radius: 12px;
background-color: var(--buttons-main-color);
color: var(--text_dark);
border: none;
cursor: pointer;
text-align: center;
text-decoration: none;
}
.login-button:hover {
background-color: var(--buttons-hover-color);
color: var(--text_dark);
}
.login-button:active {
background-color: var(--buttons-press-color);
color: var(--text_dark);
}
.login-link {
color: var(--links-main-color);
text-decoration: none;
}