*{
    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%);
}


.container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    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;
}

