body {
    margin: 0;
    padding: 0 10px;
    font-family: arial,sans-serif;
}

.play-mode .input input {
    cursor: default;
    background: #fff;
}

.input input,
.input input:disabled  {
    color: #000!important;
    opacity: 1; /* required on iOS */
}

.content {
    flex-direction: column;
    margin-top: 200px;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 425px) {
    .content__img {
        transform: scale(0.7);
    }
}

@media screen and (max-width: 320px) {
    .content__img {
        transform: scale(0.6);
    }
}

.content__img {
    position: relative;
    width: 400px;
    height: 114px;
}

.content__img h1 {
    cursor: default;
    margin: 0;
    padding: 0;
    font-size: 19px;
    font-weight: normal;
    color: #666666;
    position: absolute;
    bottom: 7px;
    right: 4px;
}

.content__img h1 span {
    color: transparent;
}

.input {
    position: relative;
    margin-top: 30px;
    max-width: 584px;
    width: 100%;
    position: relative;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
    border-radius: 24px;
}

.input:focus,
.input:hover,
.input_active {
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.input input {
    border: none;
    outline: none;
    box-shadow: none;
    border-radius: inherit;
    flex-direction: column;
    width: 100%;
    line-height: 22px;
    overflow-x: hidden;
    font-size: 16px;
    padding: 12px 45px;
    box-sizing: border-box;
}

.input__icon {
    height: 20px;
    line-height: 20px;
    width: 20px;
    position: absolute;
    top: 14px;
    left: 17px;
}

.input__icon_right {
    right: 17px;
    left: auto;
}

.form {
    gap: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form__actions {
    display: flex;
    gap: 10px;
}

.form__button {
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 14px;
    background-color: #f8f9fa;
    border: 1px solid #f8f9fa;
    border-radius: 4px;
    color: #3c4043;
    font-family: arial,sans-serif;
}

body:not(.play-mode) .form__button:hover,
.form__button_active {
    box-shadow: 0 1px 1px rgba(0,0,0,.1);
    background-color: #f8f9fa;
    border: 1px solid #dadce0;
    color: #202124;
}

.mouse {
    transition: transform ease 1s;
    transform: translate(100px, -40px);
    position: absolute;
    z-index: 100;
    top:0;
    left:0;
    background: #1f87fc1a;
    user-select: none;
    pointer-events: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mouse:after {
    display: block;
    content: ' ';
    background: url(assets/mouse.png) center center / cover no-repeat;
    width: 15px;
    height: 21px;
}

.hidden {
    display: none;
}

.play-mode .form__actionsCreate {
    display: none;
}
.play-mode .form__actionsView {
    display: inherit;
}

.form__actionsView {
    display: none;
}

.it_was_so_difficult_text {
    display: none;
}

.github-link {
    all: unset;
    cursor: pointer;
    position: absolute;
    z-index: 100;
    background: url('assets/github.png') center center / cover no-repeat;
    width: 24px;
    height: 24px;
    right: 10px;
    top: 10px;
    opacity: 0.3;
}

.github-link:hover {
    opacity: 1;
}

.play-mode .github-link {
    display: none;
}
