body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0f0f0f, #2b2b2b);
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background-color: #ffffff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.logo-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.login-login {

    width: 100%;
    max-width: 300px;
}

h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.input-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #000000;
}

input {
    width: 95%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

button {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(90deg, #000000, #222222); /* Base gradient */
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    animation: reverse-gradient 0.5s forwards; /* Animate gradient reversal */
}

@keyframes reverse-gradient {
    0% {
        background-position: right;
    }
    100% {
        background-position: left; /* Reverse gradient to left */
    }
}

.swagger-ui .topbar{
    background-color:#007bff!important
}

#apiName {
    display: block;
    text-align: right; /* Aligns the text to the right */
    margin-top: 10px;
    font-size: 14px;
    color: #a0a0a0;
}