@import url(http://fonts.googleapis.com/earlyaccess/notosanskr.css);

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

* {
    font-family: 'Noto Sans KR', sans-serif;
}

h1 , p {
    padding: 0;
    margin: 0;
}

.logo {
    text-align: center;
    line-height: 95px;
    color: rgb(0, 140, 255);
    font-size: 35px;
    font-weight: bold;
}

.login_form {
    padding: 50px;
    padding-top: 50px;
    padding-bottom: 70px;
    width: 500px;
    height: 650px;
    border-radius: 10%;
    background-color: rgb(255, 255, 255, 0.05);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.register_title{
    text-align: center;
}

.form-item > input {
    width: 465px;
    border: 2px solid rgba(187, 187, 187, 0.6);
    border-radius: 1rem;
    padding: 15px;
    font-size: 20px;
    margin-bottom: 20px;
    background-color: rgba(0, 0, 0, 0); /* 배경색을 투명하게 설정 */
    color: rgb(0, 0, 0);
}

button {
    cursor: pointer;
    padding: 15px;
    border: none;
    border-radius: 1rem;
    /*background-image: linear-gradient(120deg, #bcb4ff 0%, #06b0ff 100%);*/
    background-color: rgb(0, 140, 255);
    color: #fff;
    font-size: 20px;
    width: 500px;
}

button:hover {
    opacity: 0.8;
}

a {
    text-decoration: none;
    color: #06b0ff;
    font-weight: 300;
    position: relative;
    top: 10px;
}