body {
    background-color: #3e65ad;
    font-family: Arial, "Times New Roman";
}

.default-div {
    border: 2px solid #4da6ff;

    box-shadow:
        0 0 5px #4da6ff,
        0 0 15px #4da6ff,
        0 0 5px #4da6ff;
    background-color: #4a8dcf;
    border-radius: 12px;
    align-items: center;
    width: fit-content;
    padding: 20px;
    margin: 0 auto;
    margin-top: 30px;
}
.default-text {
    text-align: center;
    color: #abd5ff;
    max-height: 100px;
}

.default-input {
    background-color: #367ec7;
    width: 300px;
    height: 20px;
    padding: 12px;
    border: 1px solid #4da6ff;
    border-radius: 12px;
    color: #abd5ff;
    display: block;
    margin: 0 auto;
    outline: none;
    caret-color: #4da6ff;
    text-align: center;
    font-size: 18px;
    max-height: 100px;
    box-shadow:
        0 0 5px #4da4ff,
        0 0 15px #4da4ff,
        0 0 5px #4da4ff;
}
.default-input::placeholder {
    color: #abd5ff;
    text-align: center;
    font-size: 18px
}
.default-button {
    text-align: center;
    margin: 0 auto;
    background-color: #4da6ff;
    color: #abd5ff;
    border-radius: 8px;
    border: #4da6ff;
    display: block;
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 16px;
    width: 325px;
    max-height: 100px;
    box-shadow:
        0 0 5px #4da4ff,
        0 0 15px #4da4ff,
        0 0 5px #4da4ff;
    transition: 0.2s
}
.default-button:hover {
    transform: scale(1.05);
    background-color: #4dafff;
}
.default-button:active {
    transform: scale(0.95)
}
.hide {
    opacity: 0;
    max-height: 0;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;

    transition:
        opacity 0.2s ease,
        max-height 0.2s ease,
        margin 0.2s ease,
        padding 0.2s ease;
}
.default-button,
.default-input,
.default-text {
    transition:
        opacity 0.2s ease,
        max-height 0.2s ease,
        margin 0.2s ease,
        padding 0.2s ease;
}

@keyframes flyIn {
    from {
        transform: translateY(50px);
        opacity: 0
    }
    to {
        transform: translateY(0px);
        opacity: 1
    }
}