Spaces:
Runtime error
Runtime error
File size: 1,317 Bytes
90653e1 ae5391f 90653e1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
/* Center the text input fields */
input[type=text],
input[type=password] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
box-sizing: border-box;
}
/* Add a gradient background */
body {
background: linear-gradient(to bottom right, #1a237e, #3949ab);
}
/* Center the login box */
.login-box {
margin: auto;
width: 300px;
background-color: white;
padding: 20px;
border-radius: 5px;
/* text-align: center; */
box-shadow: 0px 0px 10px #888;
}
/* Style the login button */
.login-button {
background-color: #4caf50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 5px;
cursor: pointer;
width: 100%;
}
/* Style error messages */
.error-message {
color: red;
}
/* Style loading */
.loading-container {
display: none;
justify-content: center;
align-items: center;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(255, 255, 255, 0.8);
z-index: 9999;
}
.loading-container.show {
display: flex;
}
.loader {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 20px;
}
.loader img {
width: 60px;
height: 60px;
} |