
        @import url(https://fonts.googleapis.com/earlyaccess/notosanskr.css);

        body {
            font-family: 'Noto Sans KR', sans-serif;
            background-color: #edd9b39c;
            margin: 50px;

        }
		.logo	{
			margin-top:50px;
		}
		
        h2	{
			font-family: 'Nanum Gothic', sans-serif;
			font-size:14px;
            margin-right:3px;
		}

		h3	{
			font-family: 'Nanum Gothic', sans-serif;
			font-size:10px;
            margin-right:3px;
		}
			
        .background {
            background-color: white;
            height: auto;
            width: 90%;
            max-width: 450px;
            padding: 10px;
            margin: 0 auto;
            border-radius: 5px;
            box-shadow: 0px 40px 30px -20px rgba(0, 0, 0, 0.3);
            text-align: center;
        }
        .g-recaptcha {
            display: inline-block; /* 인라인 블록으로 설정 */
            margin: 0 auto; /* 가운데 정렬 */
        }

        form {
            display: flex;
            padding: 30px;
            flex-direction: column;
        }

        .login {
            border: none;
            border-bottom: 2px solid #D1D1D4;
            background: none;
            padding: 10px;
            font-weight: 700;
            transition: .2s;
            width: 75%;
            font-size: 15px;
            
        }
        .login:active,
        .login:focus,
        .login:hover {
            outline: none;
            border-bottom-color: #6A679E;
            
        }

        .btn {            
            border: none;
            width: 75%;
            background-color: #789049fc;
            color: white;
            padding: 15px 0;
            font-weight: 1000;
            border-radius: 5px;
            cursor: pointer;
            transition: .2s;
            font-size: 16px;
        }
        .btn:hover {
            background-color: #789049ae;
        }
        #languageSelect{
        
            border: none;
            border-bottom: 2px solid #D1D1D4;
            background: none;
            padding: 10px;
            font-weight: 700;
            transition: .2s;
            width: 30%;
        }