@charset "UTF-8";
/* CSS Document */
.content {
    padding: 20px;
}

.notice {
    padding: 10px;
    background-color: #f0f0f0;
    margin-bottom: 10px;
}

.popup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    justify-content: center;
    align-items: center;
    z-index: 9000;
}

.popup form {
    height: calc(100vh - 200px);
    background-color: #fff;
    padding: 4rem 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.popup form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup .close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.25rem;
    color: #075E9A;
    cursor: pointer;
}

.popup .input {
    margin-bottom: 1rem;
    padding: .5rem;
    width: 100%;
    height: calc(100% - 8rem);
    border: 1px solid #000;
    font-size: 1.25rem;
    color: #000;
    resize: none;
    text-align: left;
    overflow-wrap: break-word;
    direction: ltr; /
}

