
@import url('https://cdn.rawgit.com/moonspam/NanumSquare/master/nanumsquare.css');

* {

    -webkit-tap-highlight-color: transparent;

}

body {
    font-family: NanumSquare, sans-serif;
    margin: 0;
    padding: 0;
    /* width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center; */
    background-color: #f5f6f7;
}

.logindivbg {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logindiv {
    width: 400px;
    height: 450px;
    border-radius: 16px;
    /* box-shadow : 0 0 5px 0 rgba(0, 0, 0, 0.1); */
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;

    /* background-color: aqua; */
    
}

.logindiv-title {
    width: calc( 100% - 40px );
    height: 40px;
    /* background-color: aqua; */
    margin-top: 20px;
}

.logindiv-title h1 {
    margin: 0;
    padding: 0;
}

.logindiv-inputdiv {
    width: calc( 100% - 40px );
    height: 180px;
    /* background-color: aqua; */
}

.logindiv-inputdiv-title {
    width: calc( 100% - 20px );
    height: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: end;
    /* background-color: aqua; */
    margin-top: 10px;
}

.logindiv-inputdiv-title h3 {
    margin: 0;
    padding: 0;
}

input {
    width: calc( 100% - 18px );
    height: 44px;
    border-radius: 16px;
    border: 2px solid white;
    /* margin-top: 10px; */
    outline: none;
    padding: 0 0 0 10px;
    font-size: 16px;
    transition: border-color 0.2s;
}

input:focus {
    border-color: #4863F4;
}

.logindiv-loginbtndiv {
    width: calc( 100% - 40px );
    height: 50px;
    /* background-color: aqua; */
    /* margin-top: 10px; */
    /* background-color: #3486f4; */
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logindiv-loginbtn {
    width: calc( 100% );
    height: 50px;
    outline: none;
    border-radius: 16px;
    border: none;
    /* border: 2px solid #f9f9f9; */
    /* background-color: #3486f4; */

    background: linear-gradient(135deg, #4863F4, #8A7EFF);

    color: white;
    font-size: 24px;
    font-weight: 500;
    transition: all 0.3s;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.logindiv-loginbtn:active {
    /* background-color: rgba(52, 134, 244, 0.7); */
    background: linear-gradient(135deg, rgba(72, 99, 244, 0.8), rgba(138, 126, 255, 0.8));
}