
body {
    background-color: #0D1B44;
    color: #FFF;
    margin-top: 20px;
    display: flex;
    align-items: start;
    justify-content: center;

    font-size: 24pt;
}

.container-1 {
    display: flex;
    flex-direction: column;
    align-items:stretch;
    gap: 10px;
    margin-bottom: 30px;
    margin-top: 30px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

input {
    color: white;
    border: none;
    appearance: none;
    background-color: #223979;
    padding: 20px;
    border-radius: 25px;
    width: 250px;
    outline: none;

    font-size: 18pt;
}

.ok-input {
    border: none;
    appearance: none;
    padding: 20px;
    border-radius: 25px;
    width: 250px;
    outline: none;

    font-size: 18pt;

    margin-top: 50px;
    color: #223979;
    background-color: #FF7CFF;
    transition: all .5s;
}

.ok-input:hover {
    transform: scale(1.1);
}