*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
  /* 把它移到最前面！英文字母會套用 Roboto，遇到中文就會優先使用 Noto Serif TC */
  --default-font: "Roboto", "Noto Serif TC", system-ui, -apple-system, sans-serif;
  
  /* 如果標題也想用思源宋體，可以這樣寫： */
  --heading-font: "Montserrat", "Noto Serif TC", sans-serif;
  
  /* 如果導覽列也想用思源宋體，可以這樣寫： */
  --nav-font: "Poppins", "Noto Serif TC", sans-serif;
}

body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: #fcfaf7;
}

h1{
    color: rgb(7, 7, 7);
}

.header{
    background-color: #fdfeff;
}



.login-form{
    background-color: #fcfaf7;
    border: 3px solid black;
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(25px);
    text-align: center;
    color: white;
    width: 400px;
    box-shadow: 0px 0px 20px 10px rgba(0,0,0,0.15);
    font-family: 'Poppins', sans-serif;
}

.login-title{
    font-size: 40px;
    margin-bottom: 40px;
}

.input-box{
    margin: 20px 0;
    position: relative;
}

.input-box input{
    width: 100%;
    background: rgba(255,255,255,0.1);
    border: black 2px solid;
    padding: 12px 12px 12px 45px;
    border-radius: 99px;
    outline: 3px solid transparent;
    transition: 0.3s;
    font-size: 17px;
    color: rgb(11, 11, 11);
    font-weight: 600;
}
.input-box input::placeholder {
    color: rgba(32, 32, 32, 0.8);
    font-size: 17px;
    font-weight: 500;
}

.input-box input:focus{
    outline:3px solid rgba(0, 0, 0, 0.3);
}

.input-box input::-ms-reveal{
    filter: invert(100%);
}

.input-box i{
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: rgba(14, 14, 14, 0.8);
}

.remember-forgot-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px 0;
    font-size: 15px;
}

.remember-forgot-box label{
    display:flex;
    gap: 8px;
    cursor: pointer;
    color: black;
}

.remember-forgot-box input{
    accent-color: #090909;
    cursor: pointer;
}

.remember-forgot-box a{
    color: rgb(7, 7, 7);
    text-decoration: none;
}

.remember-forgot-box a:hover{
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 10px 0;
    background: #0D6EFD;
    border: none;
    border-radius: 99px;
    color: rgb(244, 239, 239);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.register-btn {
    width: 100%;
    padding: 10px 0;
    background: #0D6EFD;
    border: none;
    border-radius: 99px;
    color: rgb(15, 14, 14);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    background: #0B87EC;
}
.register{
    margin-top: 15px;
    font-size: 15px;
    color: black;
}
.register a{
    color: rgb(16, 16, 16);
    text-decoration: none;
    font-weight: 500;
}
.register a:hover{
    text-decoration: underline;
}