79 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| #SignIn {
 | |
|     align-items: center;
 | |
|     background-color: #f3f5f8;
 | |
|     display: flex;
 | |
|     flex-direction: column;
 | |
|     justify-content: space-between;
 | |
|     height: 100vh;
 | |
| }
 | |
| 
 | |
| .signin-input-box {
 | |
|     display: flex;
 | |
|     flex-direction: column;
 | |
|     justify-content: center;
 | |
|     align-items: center;
 | |
|     width: 50%;
 | |
| }
 | |
| 
 | |
| .signin-input-button {
 | |
|     display: flex;
 | |
|     flex-direction: row;
 | |
|     justify-content: space-between;
 | |
|     width: 100%;
 | |
| }
 | |
| 
 | |
| .signin-input {
 | |
|     border: 2px solid #D6E0EA;
 | |
|     border-radius: 10rem 0rem 0rem 10rem;
 | |
|     background-color: white;
 | |
|     color: #061726;
 | |
|     outline: none;
 | |
|     padding: 0.5rem 1rem;
 | |
|     width: 80%;
 | |
| }
 | |
| 
 | |
| .signin-button {
 | |
|     background-color: #85c742;
 | |
|     border: none;
 | |
|     border-radius: 0rem 10rem 10rem 0rem;
 | |
|     color: #061726;
 | |
|     cursor: pointer;
 | |
|     font-weight: bold;
 | |
|     text-decoration: none;
 | |
|     width: 20%;
 | |
| }
 | |
| 
 | |
| .signin-button:hover {
 | |
|     background-color: #77b23b;
 | |
| }
 | |
| 
 | |
| .signin-label {
 | |
|     font-family: sans-serif;
 | |
|     font-weight: bold;
 | |
|     color: #061726;
 | |
|     justify-content: flex-start;
 | |
|     text-transform: uppercase;
 | |
|     width: 100%;
 | |
| }
 | |
| 
 | |
| .signin-title {
 | |
|     align-items: center;
 | |
|     color: #061726;
 | |
|     display: flex;
 | |
|     flex-direction: column;
 | |
|     font-family: sans-serif;
 | |
|     font-weight: bold;
 | |
|     height: 10%;
 | |
|     justify-content: center;
 | |
|     margin: 20px;
 | |
|     text-align: center;
 | |
| }
 | |
| 
 | |
| .signin-title-text {
 | |
|     font-size: 20px;
 | |
|     margin: 0;
 | |
| }
 | |
| .signin-title-subtext {
 | |
|     font-size: 12px;
 | |
|     margin: 0;
 | |
| } | 
