Register and login pages conformed

This commit is contained in:
Lucas Patenaude
2024-04-24 02:47:26 -06:00
parent 1734c288be
commit 31637aaef4
5 changed files with 16 additions and 44 deletions

View File

@@ -1,13 +1,19 @@
/* Styling to center login page items */
.login-page {
height: 50%;
display: flex;
justify-content: center; /* Center items horizontally */
align-items: center; /* Center items vertically */
.account-portal-container {
width: 400px;
height: 408px;
position: absolute;
top: 150px; /* Adjust this value as needed */
right: 20px; /* Adjust this value as needed */
z-index: 5;
background: linear-gradient(to bottom, white, rgb(245, 245, 245), rgb(227, 227, 227)); /* Gradient from white to gray */
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
border: 1px solid gray;
}
.form-container {
width: 25%;
width: 50%; /* Adjust width as needed */
margin: 0 auto; /* Center horizontally */
text-align: center; /* Center text horizontally */
}
/* Styling to center register page items */
@@ -30,13 +36,6 @@ body {
margin : 100x;
}
/* Center form items */
.form-container {
width: 50%; /* Adjust width as needed */
margin: 0 auto; /* Center horizontally */
text-align: center; /* Center text horizontally */
}
/* Apply modern styling to inputs and select elements */
#form-control,
select {