body {
    background-color: #1c1c1c;
    color: #fff;
    margin: 0;
    padding: 0;
}

.flex {
    display: flex;
}

.medel {
    justify-content: center;
    align-items: center;
}

.darkSide {
    height: 100vh;
    width: 100%;
    background-color: #00000045;
}

.center {
    justify-content: center;
}

.loginBox {
    background-color: #2c2c2c;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

input {
    padding: 8px;
    border: none;
    border-radius: 4px;
    background-color: #444;
    color: #fff;
    outline-color: #4680ff;
}

button {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    background-color: #363636;
    color: #fff;
    cursor: pointer;
}

.textCenter {
    text-align: center;
}

.alert {
    position: fixed;
    padding: 10px;
    background-color: #444;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: #fff;
    animation: fadeOut 0.4s forwards;
    top: 20px;
}



@keyframes fadeOut {
    0% {
        transform: scale(0.1);
    }
    100% {
        transform: scale(1);
    }
}