/*
	Theme Name: Swipe
	Template: hello-elementor
*/

.page-content {
    padding: 1em;
}

.login-form, .create-page-form, .page-list {
    width: 100%;
    box-sizing: border-box;
    max-width: 500px;
    margin: 2em auto;
}
.page-list {
    max-width: 750px;
}
.page-list ul {
    padding: 0;
    list-style: none;
}
.page-list li {
    margin: 10px 0;
    background-color: #f2f2f2;
    padding: 5px 10px;
}
input[type=text].name-set {
    display: inline-block;
    width: 150px;
    padding: 1px;
}
.msg {
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 1em 0.5em;
    background-color: #fff59c;
}
.msg p {
    margin-block-end: 0;
    color: green;
}
form.name-set-form {
    display: inline-flex;
    gap: .2rem;
    align-items: center;
    margin-left: 10px;
}
button.name-set-btn {
    font-size: 0.8em;
    padding: 0.3em 0.5em;
}
.e-con {
	background-size: contain!important;
    background-repeat: no-repeat;
    background-position: center center!important;
}

/* ボタン */

.button-50 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 250px;
    margin: 0 auto;
    padding: .9em 2em .8em 45px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 3px rgb(0 0 0 / 30%), 0 2px 3px -2px rgb(0 0 0 / 20%);
    background-color: #ac118a;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    transition: transform .3s ease-in-out, box-shadow .3s ease-in-out;
}

.button-50:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 30px -5px rgb(0 0 0 / 20%), 0 0 5px rgb(0 0 0 / 10%);
}

.button-50::before {
    position: absolute;
    top: 0;
    left: 15px;
    width: 30px;
    height: 85%;
    background-color: #fff;
    clip-path: polygon(0 0, 0 100%, 50% 75%, 100% 100%, 100% 0);
    content: '';
}

.button-50::after {
    position: absolute;
    top: 33%;
    left: 30px;
    transform: translate(-50%, -50%);
    color: #ac118a;
    font-size: 1.2em;
    content: '★';
}