*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    background-color: white;
    font-family: 'Noto Sans KR', sans-serif;
}

.nav {
    background-color: rgba(255, 255, 255, 0.8);
    width : 100%;
    height: 70px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);

    top: 0px;
    position: sticky;
}

h2 {
    all: unset;
    display: block;
    font-size: 20px;
    margin-bottom: 30px;
}

.logo {
    grid-column: 2 / 4;
    grid-row: 1;
}

.logo > img {
    all: unset;
    width: 50px;
    height: 50px;
    top: 50%;
    margin-top: 5px;
    vertical-align: center;
}

.logo > h3 {
    all: unset;
    font-size: 18px;
    
    display: inline-block;
    margin-left: 10px;

    top: 50%;
    vertical-align: center;
    transform: translateY(-50%);
}

.menu {

    grid-column: 5 / 7;
    grid-row: 1;
}

.menu > a {
    all: unset;
    background-color: #EDF6FC;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    width: 70px;
    text-align: center;
    margin-top: 10px;
    margin-left: 5px;
    transition: background-color 1s, box-shadow 1s;

    cursor: pointer;
    color: black;
}

.menu > a:hover {
    background-color: #E6F9F5;
    box-shadow: 0px 0px 6px rgba(44, 44, 44, 0.3);
}

.container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 20px 100px;
    
}

.content-box{
    max-width: 700px;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    justify-content: center;
    text-align: center;
    background-color: #fff;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.05);
}


.right{

    padding: 25px 40px;
    
}

h2{
    position: relative;
    padding-bottom: 50px;
    margin-bottom: 50px;
    text-align: center;
}

h2:after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 50px;
    border-radius: 2px;
    background-color: #FCF1EA;

}

.field{
    width:100%;
    
    padding: 0.7rem 1rem;
    outline: none;
    border: 2px solid rgba(0, 0, 0, 0);
    background-color: rgba(230, 230, 230, 0.6);
    font-size: 1.1rem;
    margin-bottom: 24px;
    transition: .3s;
}

.field:hover{
    background-color: rgba(0, 0, 0, 0.1);
}

.field:focus{
    background-color: #fff;
    border: 2px solid rgba(30, 85, 250, 0.47);
}

.area{
    min-height: 150px;
}

.btn{
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    background-color: #FCF1EA;
    color: rgb(112, 112, 112);
    cursor: pointer;
    outline: none;
    border: none;
    
    transition: background-color .3s;
}

.btn:hover{
    background-color: #ffc5a1c7;
}

.sign_menu {
    display: flex;
    justify-content: space-between;
}

.sign_menu > button {
    all: unset;
    margin-top: 10px;
    cursor: pointer;
    transition: text-shadow .3s;
}

.sign_menu > button:hover {
    text-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);;
}

.social_login {
    margin-top: 20px;
    max-width: 700px;
    height: auto;
}


td {
    width: 200px;
    height: 200px;
    display: flexbox;
    text-align: center;
}

.icon {
    color:  rgba(210, 210, 210, 1);
    transition: all 1s ease-in-out;
    transform: scale(1);
    
}

.face:hover {
    color: #1877F2;
    transform: scale(1.2);
}

.twit:hover {
    color: #2AA9E0;
    transform: scale(1.2);
}

.line:hover {
    color: #00BD00;
    transform: scale(1.2);
}