body {
    max-width: 100%;
    margin: 30px 20px 20px 20px;
    text-align: center;
    background: var(--bgc);
}

h1, a {
    color: var(--primary-color);
    font-weight: bolder;
    text-decoration: none;
}

label {
    margin: 20px auto 10px auto;
    display: block;
}

input {
    width: 80%;
    height: 20px;
    padding: 10px;
    border-radius: 15px;
    outline: none;
    border: thin solid var(--primary-color);
    background-color: var(--bgc-inputs);
}

input::placeholder {
    color: #444;
}

input:focus {
    border: 2px solid var(--primary-color);
}

button {
    width: 85%;
    height: 45px;
    font: inherit;
    background-color: var(--primary-color);
    border: 0;
    border-radius: 15px;
    color: white;
    cursor: pointer;
    margin: 30px auto 10px auto;
    font-weight: bold;
}

button:hover, button:active, button:focus {
    transition: all ease 0.5s;
    transform: translateY(5px);
    box-shadow: 0 4px 15px blue;
}

.large-text {
    font-weight: bold;
    font-size: 1.5rem;
}

.normal-text {
    font-size: 0.98rem;
}

.dialog {
    width: 85%;
    height: auto;
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    margin: auto;
    font-weight: bold;
    position: fixed;
    top: 8vh;
    left: 5%;
    transition: all ease 0.5s;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 6%;
}

.hide-btn {
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    border: thin solid white;
    background-color: white;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.message {
    width: 70%;
}

.hide-btn:hover {
    opacity: 90%;
}

.bg-error {
    background-color: var(--bg-error);
    color: var(--bg-error-color);
}

.bg-success {
    color: var(--bg-success-color);
    background-color: var(--bg-success);
}

.hide {
    display: none;
}

.show {
    display: flex;
}

.disabled {
    opacity: 60%;
    user-select: none;
}