/* agreement.css */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 1%;
    margin-bottom: 1%;
    user-select: none;
}

.agree_body {
    background-size: cover;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.agree_form {
    width: 60%;
    height: 80%;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 30px 40px 30px 40px;
}

.agree_title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 40px;
    margin-bottom: 30px;
    color: white;
}

.agree_textArea {
    height: 250px;
    font-size: 13px;
    font-weight: lighter;
    border: 1px solid #d44179;
    padding: 26px 50px 20px 10px;
    outline: none;
    border-radius: 15px;
    resize: none;
    overflow-y: scroll;
    margin-bottom: 30px;
}

body .checkboxArea>div {
    display: flex;
    justify-content: space-between;
    margin: 4px 0;
}

.checkbox {
    width: 25px;
    cursor: pointer;
}

.agree_select {
    display: block;
    border: 1px solid #eee;
    width: 80%;
    padding: 10px;
    margin: 10px auto;
    border-radius: 5px;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    /* 그림자 효과 추가 */
}

.label_tag {
    user-select: none;
    cursor: pointer;
    color: white;
    font-size: 20px;
}

#save {
    float: right;
    background: #d44179;
    padding: 10px 15px;
    color: #fff;
    border-radius: 5px;
    margin-right: 10px;
    border: none;
}

#save:hover {
    opacity: 0.7;
}

/* 로고 */
.logoImage {
    width: 50%;
    margin: auto;
}

/* 각 요소들의 padding 5px을 주어서 간격 띄움 */
.row {
    padding: 5px;
}

/* 모바일 화면 크기에 따른 스타일 수정 */
@media (max-width: 768px) {

    .agree_body {
        font-size: 24px;
        width: 100%;
        height: 80%;
    }

    .agree_title {
        font-size: 30px;
    }

    .agree_form {
        width: 100%;
        /* 모바일 화면에 대한 폭 조정 */
    }

    .checkbox {
        width: 25px;
        line-height: 30px;
        margin-top: 7px;
    }

    .agree_textArea {
        width: 90%;
    }

    input,
    .agree_select {
        width: 100%;
        /* 모바일 화면에 대한 입력 필드 너비 조정 */
    }

    .regi_body {
        width: 100%;
        height: 80%;
    }

    .regi_form {
        width: 90%;
        /* 모바일 화면에 대한 폭 조정 */
        margin: auto;
    }

    .regi_input,
    .regi_select {
        width: 80%;
        /* 모바일 화면에 대한 입력 필드 너비 조정 */
    }

    /* 기타 모바일 화면에 대한 스타일 조정 */
    .regi_input::placeholder {
        font-size: smaller;
    }

    .regi_select::-ms-value {
        font-size: x-small;
    }

}

@media (min-width:768px) {
    .checkbox {
        width: 25px;
        line-height: 30px;
        margin-bottom: 5px;
    }

    .regi_form {
        width: 90%;
        /* 모바일 화면에 대한 폭 조정 */
        margin: auto;
    }
}

/* agreement.css */

/* register.css */
.regi_form {
    width: 50%;
    height: 80%;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.regi_title {
    text-align: center;
    margin-bottom: 10px;
    color: white;
    font-weight: 500;
}

.regi_input {
    border: 2px solid #ccc;
    /* 테두리 스타일 및 색상 설정 */
    padding: 10px;
    /* 내부 여백 설정 */
    border-radius: 5px;
    /* 둥근 모서리 설정 */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    /* 그림자 효과 추가 */
}

.regi_input:focus {
    border: 1px solid rgb(253, 168, 234);
    box-shadow: 0 0 10px rgb(253, 168, 234);
}

.regi_select {
    display: block;
    border: 1px solid #eee;
    width: 80%;
    padding: 10px;
    margin: 10px auto;
    border-radius: 5px;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    /* 그림자 효과 추가 */
}

.regi_label {
    color: #888;
    font-size: 16px;
    padding: 8px 10px 5px 10px;
}

.regi_button {
    float: right;
    background: #c93970;
    padding: 10px 15px;
    color: #fff;
    border-radius: 5px;
    margin-right: 10px;
    border: none;
}

.regi_button:hover {
    opacity: 0.7;
}

.regi_save {
    font-size: 12px;
    color: #555;
    display: inline-block;
    padding: 10px;
    text-decoration: none;

}

.regi_save:hover {
    text-decoration: underline;
}

/* register.css */