13 lines
285 B
CSS
13 lines
285 B
CSS
|
|
#login-page {
|
||
|
|
width: 400px;
|
||
|
|
height: fit-content;
|
||
|
|
position: absolute;
|
||
|
|
top: 150px; /* Adjust this value as needed */
|
||
|
|
right: 20px; /* Adjust this value as needed */
|
||
|
|
z-index: 10;
|
||
|
|
background-color: white;
|
||
|
|
border: 1px solid gray;
|
||
|
|
border-radius: 8px;
|
||
|
|
}
|
||
|
|
|
||
|
|
|