fix styling on login + signup page

This commit is contained in:
afazio1
2024-04-11 01:07:07 -04:00
parent 6556bb643b
commit 5d0f258e5f
3 changed files with 35 additions and 9 deletions

View File

@@ -14,7 +14,29 @@ h1 {
text-align: center;
}
.form-inputs {
.form-input {
display: flex;
flex-direction: column;
}
}
.login-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: #B1D4E0;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* shadow */;
width: 40vh;
}
.submit-button {
padding: 8px 16px;
margin-top: 20px; /* Adds space above the button */
background-color: #2E8BC0; /* Example background color */
color: white; /* Text color */
border: none;
border-radius: 4px;
cursor: pointer;
font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}