* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #141412;
    color: #fff;
}

.flame {
    position: fixed;
    left: 0;
    width: 50vw; /* Szerokość większa niż ekran */
    height: 90vh;
    opacity: 0.05;
    z-index: -10;
    top: 50%;
    transform: translateY(-50%);
}

.box {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.box .welcome {
    padding-right: 150px;
    display: flex;
    align-items: center;
}

.box .welcome p {
    color: #999;
}

.box .welcome .logo {
    width: 125px;
    margin-right: 25px;
}

.box .auth {
    position: relative;
    width: 300px;
    height: 360px;
    background-color: #1b1b19;
    padding: 20px;
    border-radius: 15px;
}

.box .auth.reset {
    position: relative;
    width: 300px;
    height: 300px;
    background-color: #1b1b19;
    padding: 20px;
    border-radius: 15px;
}

.box .auth h1 {
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.box .auth .inputBox input {
    position: relative;
    width: 100%;
    height: 50px;
    background-color: #161615;
    border: none;
    outline: none;
    padding: 25px 10px 7.5px;
    color: #fff;
    border-radius: 5px;
    font-size: 1em;
    margin: 15px 0px;
}

.box .auth .inputBox i {
    position: absolute;
    left: 25px;
    padding: 32.5px 10px;
    font-style: normal;
    color: #aaa;
    transition: 0.5s;
    pointer-events: none;
}

.box .auth .inputBox input:focus ~ i,
.box .auth .inputBox input:valid ~ i {
    transform: translateY(-8px);
    font-size: 0.7em;
    color: #fff;
}

.box .auth .button {
    margin-top: 15px;
    background-color: #0036a3;
    width: 100%;
    padding: 10px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.box .auth .button:hover {
    background-color: #002c85;
}

.box .auth a {
    color: #a3a3a3;
    text-decoration: none;
    width: 100%;
    display: block;
    margin-top: 20px;
    text-align: center;
}

.box .auth .info {
    color: #666;
    font-size: 12px;
    position: absolute;
    bottom: 10px;
    left: 5px;
    text-align: center;
}

footer {
    position: fixed;
    bottom: 15px;
    color: #666;
}

footer a {
    text-decoration: none;
    color: #0036a3;
}

.services {
    display: flex;
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background-color: #1B1B19;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    transition: width 0.3s ease 0.4s;
    cursor: pointer;
}

.services .iconBox {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
}

.services .text {
    position: absolute;
    left: 65px;
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.3s ease 0s;
}

.services:hover {
    width: 350px;
    transition: width 0.3s ease 0s;
}

.services:hover .text {
    opacity: 1;
    transition: opacity 0.3s ease 0.3s;
}

.services .text h3 {
    font-size: 15px;
}

.services .text p {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.status.ok {
    background-color: #28a745;
    box-shadow: 0 0 10px 1px rgba(40, 167, 69, 0.7);
    animation: pulse-ok 2s infinite;
}

.status.warn {
    background-color: #ffa600;
    box-shadow: 0 0 10px 1px rgba(255, 165, 0, 0.7);
    animation: pulse-warn 2s infinite;
}

.status.error {
    background-color: #ff3333;
    box-shadow: 0 0 10px 1px rgba(255, 51, 51, 0.7);
    animation: pulse-error 2s infinite;
}

.status.dev {
    background-color: #1b38db;
    box-shadow: 0 0 10px 1px rgba(17, 72, 255, 0.7);
    animation: pulse-dev 2s infinite;
}

.status {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    transition: all 0.5s ease-out;
}

@keyframes pulse-ok {
    0% {
        box-shadow: 0 0 10px 1px rgba(40, 167, 69, 0.7);
    }
    50% {
        box-shadow: 0 0 20px 1.5px rgba(40, 167, 69, 1); 
    }
    100% {
        box-shadow: 0 0 10px 1px rgba(40, 167, 69, 0.7);
    }
}

@keyframes pulse-warn {
    0% {
        box-shadow: 0 0 10px 1px rgba(255, 165, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 20px 1.5px rgba(255, 165, 0, 1); 
    }
    100% {
        box-shadow: 0 0 10px 1px rgba(255, 165, 0, 0.7);
    }
}

@keyframes pulse-error {
    0% {
        box-shadow: 0 0 10px 1px rgba(255, 51, 51, 0.7);
    }
    50% {
        box-shadow: 0 0 20px 1.5px rgba(255, 51, 51, 1); 
    }
    100% {
        box-shadow: 0 0 10px 1px rgba(255, 51, 51, 0.7);
    }
}

@keyframes pulse-dev {
    0% {
        box-shadow: 0 0 10px 1px rgba(17, 72, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 20px 1.5px rgba(17, 72, 255, 1);
    }
    100% {
        box-shadow: 0 0 10px 1px rgba(17, 72, 255, 0.7);
    }
}

/* Phones */
@media (max-width: 768px) {

    .services {
        bottom: 35px;
        left: 5px
    }

    .services:hover {
        width: 290px;
    }
    
    .services .text h3 {
        font-size: 12px;
    }

    .services .text p {
        font-size: 10px;
    }

    .box .welcome {
        display: none;
    }

    .flame {
        top: 25%;
    }

    footer p {
        font-size: 12px;
    }
}

/* Small screens */
@media (max-width: 1024px) {

    .box .welcome {
        padding-right: 50px;
    }

    .flame {
        width: 100vw;
    }

}