/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,400;0,500;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Bai Jamjuree', sans-serif;
    text-decoration: none;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 400px;
    color: #fff;
    padding: 30px 40px;
    border-radius: 15px;
    background: #1B2A3A;
}

.input-box {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 10px 0;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border-radius: 10px;
    color: #fff;
    border: 1px solid #90E0EF;
    font-size: 14px;
    padding: 10px;
}


.input-box textarea {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border-radius: 10px;
    color: #fff;
    border: 1px solid #90E0EF;
    font-size: 14px;
    padding: 10px;
}

.input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.remember {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin: -10px 0 15px;
}

.remember a {
    border-bottom: 2px solid transparent;
    color: #fff;
}

.remember a:hover {
    /* border-bottom: 2px solid #fff; */
    color: #000dff;
}

.btn {
    width: 100%;
    height: 40px;
    background: #90E0EF;
    color: #000;
    border: none;
    outline: none;
    border-radius: 10px;
    box-shadow: 0 0 20px #90E0EF;
    font-size: 14px;
    font-weight: 600;
    transition: 1s;
    margin-top: 10px;
}

.btn:hover {
    background: transparent;
    border: 2px solid #90E0EF;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 20px #90E0EF;
}

.register {
    font-size: 14px;
    margin-top: 20px;
    text-align: center;
}

.register p a {
    font-weight: 600;
    color: #fff;
    font-size: 18px;
}

.register p a:hover {
    color: #000dff;
}