@CHARSET "UTF-8";

h2 {
    color: red;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: sans-serif;

}

body {
    background-color: #34495e;
}

.loginForm {
    position: absolute;
    width: 300px;
    height: 280px;
    background-color: #FFFFFF;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.loginForm h2 {
    text-align: center;
    margin: 30px;
}

.idForm {
    border-bottom: 2px solid #adadad;
    margin: 30px;
    padding: 10px 10px;
}

.passForm {
    text-align: left;
    border-bottom: 2px solid #adadad;
    padding: 10px 10px;
    margin: 30px 30px 20px;
}

.id {
    width: 100%;
    border: none;
    outline: none;
    color: #636e72;
    font-size: 16px;
    height: 25px;
    background: none;
}

.pw {
    width: 100%;
    border: none;
    outline: none;
    color: #636e72;
    font-size: 16px;
    height: 25px;
    background: none;
}

.btn {
    position: relative;
    left: 40%;
    transform: translateX(-50%);
    margin-top: 10px;
    margin-bottom: 10px;
    width: 80%;
    height: 40px;
    background: linear-gradient(125deg, #81ecec, #6c5ce7, #81ecec) left;
    background-size: 200%;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.4s;
    display: inline;
}

.btn:hover {
    background-position: right;
}

.bottomText {
    text-align: center;
}

.checkbox {
    text-align: left;
    margin-left: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.notice {
    text-align: left;
    color: red;
    font-size: 12px;
    margin-left: 30px;
    margin-top: 0;
    margin-bottom: 0;
}