.login-body,
.signup-body {
    background-color: #f6f6f6;;
}
.form-wrap {
    min-width: 450px;
    margin: 0 auto;
    background-color: white;
    padding: 60px 40px 40px 40px;
    border-radius: 20px;
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 0px 19px 0px #291e3f30;
}
.form--flex {
    display: flex;
    align-items: center;
    gap: 20px;
}
.login-left img {
    width: 350px;
    margin-left: -35px;
}
.login-right {
    width: 250px;
}
.form-wrap .form-title {
    padding-bottom: 15px;
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    padding-bottom: 35px;
}
.form--flex .form-title {
    text-align: left;
    padding-left: 5px;
}
.form-sub {
    font-weight: 600;
    margin-top: -20px;
}
.form-wrap .form-sub {
    text-align: center;
    padding-bottom: 20px;
}
.form--flex .form-sub {
    text-align: left;
    padding: 0 0 0 5px;
}


.field-wrap {
    display: flex;
    flex-direction: column;
}
.field-wrap:nth-of-type(1) {
    margin-top: 20px;
}
.field-wrap:nth-of-type(n+2) {
    margin-top: 22px;
}
.field-wrap>.field-inner {
    appearance: none;
    background-color: #f8f8f8;
    border-radius: 10px;
    display: flex;
}
.field-wrap>.field-inner>input {
    border: 0;
    width: 100%;
    padding: 14px 20px 14px 14px;
    font-family: 'Noto Sans KR';
    background-color: transparent;
    font-weight: 400;
    color: #5200FF;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
}
.field-wrap>.field-inner>textarea {
    padding: 14px 20px 14px 14px;
    width: 100%;
    appearance: none;
    background: transparent;
    font-family: 'Noto Sans KR';
    font-weight: 400;
    color: #000;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    resize: none;
    border: 0;
}
.field-wrap>.field-inner>textarea:focus,
.field-wrap>.field-inner>input:focus {
    outline-color: #5200FF;
    border-radius: 10px;
}
.field-wrap>.field-inner>button {
    flex-shrink: 0;
    appearance: none;
    border: 0;
    background-color: #5200FF;
    color: white;
    border-radius: 3px 10px 10px 3px;
    padding: 0 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}
.field-wrap>.field-inner>button:hover {
    transform: scale(1.03);
    opacity: 0.85;
}
.field-wrap>.field-inner>textarea::placeholder,
.field-wrap>.field-inner>input::placeholder {
    color: #acacac;
}
.field-wrap>.field-inner:nth-child(n+2) {
    
    margin-top: 8px;
}
.field--flex {
    display: flex;
    gap: 35px;
    justify-content: space-between;
}
.field--flex fieldset {
    width: 500px;
}
.change-btn,
.signup-btn {
    appearance: none;
    border: 0;
    margin-top: 50px;
    padding: 20px;
    border-radius: 16px;
    background-color: #000;
    color: white;
    font-size: 16px;
    box-shadow: 0 4px 8px #b6b6b6;
    cursor: pointer;
    font-weight: 600;
}
.signup-btn {
    width: 100%;
}
.change-btn {
    width: 47%;
}
.login-btn {
    width: 100%;
    appearance: none;
    border: 0;
    margin-top: 40px;
    padding: 20px;
    border-radius: 16px;
    background-color: #000;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 2px 10px #b6b6b6;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 600;
}
.login-btn::before {
    content: "";
    display: block;
    width: 19px;
    height: 19px;
    background: url(../img/ico_google.svg)no-repeat center center;
    margin-top: 2px;
}


/* mypage style */
.main-inner02 {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
    margin-bottom: 17px;
    position: relative;
}

.form-wrap02 {
    margin: 0 auto;
    width: 690px;
    padding: 44px 0 55px;
}
.form-wrap02 .form-title {
    color: #222;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    padding-left: 7px;
}
.form-wrap02 .field-label {
    color: #222;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-left: 7px;
}
.form-wrap02 .field-label:nth-child(n+2) {
    margin-top: 14px;
}
.form-wrap02 .field-wrap:nth-of-type(1) ,
.form-wrap02 .field-wrap:nth-of-type(2) {
    margin-top: 34px;
}
.form-wrap02 .sol-p {
    color: #5200FF;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-left: 7px;
    margin-top: 11px;
}

/* effect scale style */
.effect--scale {
    transition: all 0.3s;
}
.effect--scale:hover {
    transform: scale(1.03);
}
/*  --end effect scale style */
