@font-face {
    font-family: "Quicksand";
    src: url('fonts/Quicksand-VariableFont_wght.ttf') format("truetype");
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
.loader {
    display: inline-block;
    border: 3px solid #f3f3f3; /* Light grey background circle */
    border-top: 3px solid #3498db; /* Blue spinning part */
    border-radius: 50%; /* Makes it a circle */
    width: 12px;
    height: 12px;
    animation: spin 1s linear infinite; /* Loops the rotation */
    visibility: hidden;
}
/* Define the spinning motion */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.module {
    margin: 0 0 20px 0;
    padding: 15px;
}
.module .body {
    border-radius: 8px;
    padding: 10px;
    background-color: #ededed;
    color: #4c4c54;
}
.module .title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}
.module .footer {
    margin-top: 5px;
    text-align: right;
    font-size: 12px;
    color: #ccc;
}
body {
    font-family: "Quicksand", sans-serif;
    color: #ccc;
    font-size: 15px;
    background-color: #41424c;
    margin: 0;
    padding: 20px;
}
#body {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background-color: #7e7e87;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#body > div:first-child {
    padding: 20px;
}
h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px;
}
p {
    margin: 10px 0;
}
#api-status {
    position: absolute;
    right: 10px;
    top: 10px;
    margin: 0;
    padding: 10px;
}
.container-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}
label {
    display: block;
    margin-top: 10px;
}
input[type="text"], input[type="password"], input[type="email"] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
input[type="submit"] {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.green {
    color: rgb(24, 198, 24);
}
.red {
    color: rgb(255, 107, 107);
}