@import url("default.css");

body {
  font-family: 'Jeju Myeongjo';
  background-image: url("../image/index.png");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}

fieldset{
  border: none;
}

hr{
  background-color: rgb(131, 131, 131);
  outline: none;
  border: none;
  height: 2px;
  width: 80%;
  margin: 1vh, 0;
}

#DialogOutSignin, #DialogOutLogin {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 2;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

#loginDialogIn {
  background-color: rgb(255, 255, 255);
  margin: 0 auto;
  /* 15% from the top and centered */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  width: 30%;
  height: 30%;
  /* Could be more or less, depending on screen size */
  text-align: center;
}

#SignInForm{
  background-color: rgb(255, 255, 255);
  margin: 0 auto;
  /* 15% from the top and centered */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  width: 30%;
  height: 65%;
  /* Could be more or less, depending on screen size */
  text-align: center;
}

#loginDialogContent, #SignInFormContents {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

#closeLogin, #closeSignin {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  z-index: 3;
}

#closeLogin:hover, #closeLogin:focus, #closeSignin:hover, #closeSignin:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

input:active, input:focus {
  outline: none;
}

.title {
  text-align: center;
}

.logo {
  position: absolute;
  top: 20%;
  left: 50%;
  margin: 0 auto;
  transform: translate(-50%, -20%);
  text-align: center;
}

.logo img {
  width: 80%;
}

.mainButtons {
  position: absolute;
  width: 30%;
  bottom: 10%;
  margin: 0 auto;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
/* index button 효은 수정 0621*/
/*
.mainButtons input {
  background-color: rgba(255, 255, 255, 0.5);
  width: 6vw;
  height: 6vw;
  border: none;
  transition: all ease 1s;
  text-align: center;
}

.mainButtons input:hover {
  transform: rotate(30deg);
  cursor: pointer;
}

.mainButtons input:first-child {
  float: left;
}

.mainButtons input:last-child {
  float: right;
}
*/

.mainButtons input:first-child{
    border-radius: 3px;
    width: 5.5vw;
    height: 5.5vw;
    background-color: rgba(255, 255, 255, 0.5);
    transition-duration: 0.2s;
    border: none;
    box-shadow:  1px 2px 2px rgb(189, 189, 189);
    display: inline-block;
    color: #513E05;
    font-size: 1em;
    float: left;
}

.mainButtons input:last-child{
    border-radius: 3px;
    width: 5.5vw;
    height: 5.5vw;
    background-color: rgba(255, 255, 255, 0.5);
    transition-duration: 0.2s;
    border: none;
    box-shadow:  1px 2px 2px rgb(189, 189, 189);
    display: inline-block;
    color: #513E05;
    font-size: 1em;
    float: right;
}

.mainButtons input:first-child:hover{
  width: 6.5vw;
  height: 6.5vw;
  border: none;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: all 0.2s cubic-bezier(.4,0,.2,1);
}

.mainButtons input:last-child:hover{
  width: 6.5vw;
  height: 6.5vw;
  border: none;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: all 0.2s cubic-bezier(.4,0,.2,1);
}
/* index button 여기까지 0621*/
/**/

#idLogin, #pwLogin, .defaultInput {
  height: 5vh;
  width: 60%;
  margin: 2vh 0;
  border: none;
  outline: transparent;
  border-bottom: 2px solid rgb(223, 223, 223);
}

#idLogin:hover, #pwLogin:hover, .defaultInput:hover, #idLogin:focus, #pwLogin:focus, .defaultInput:focus {
  border-bottom: 2px solid rgb(125, 125, 125);
}

#idLogin::placeholder {
  text-decoration-color: black;
  color: black;
}

.colorPick{
  border: none;
  margin: 2vh 0;
}

input[type=color]{
  width: 2vh;
  margin-right: 2vh;
}

.buttons{
  margin: 2vh 0;
}

input[type=submit], input[type=reset]{
  height: 3vh;
  border: none;
  background-color: white;

}

input[type=submit]:hover, input[type=reset]:hover{
  background-color: rgb(187, 187, 187);
  cursor: pointer;
  transition: all ease 1s;
}

.buttonInput:first-child{
  margin-right: 5vh;
}
