/*Google Font Import*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
    /*Color*/
        --body-color: #E4E9F7;
        --bt-color: #ff84a9;
        --text-color: #707070;
        --hover-color: #bbbbbb;
        
    /*Transition*/
        --tran-02: all 0.2s ease;
        --tran-03: all 0.3s ease;
        --tran-04: all 0.4s ease;
        --tran-05: all 0.5s ease;
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
    text-decoration: none;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    background: var(--body-color);
    transition: var(--tran-05);

}

a {
    color: var(--bt-color);
}

body.dark {
    --body-color: #242526;
    --bt-color:  #ff84a9;
    --text-color: #CCC;
    --hover-color: #CCC;
    --tran-02: all 0.2s ease;
    --tran-03: all 0.3s ease;
    --tran-04: all 0.4s ease;
    transition: var(--tran-05);
}

.login {
    width: 420px;
    padding: 40px;
}

.login p {
    font-size: 14px;
    text-align: center;
    font-style: normal;
    margin-bottom: 0;
    color: var(--text-color);
    transition: var(--tran-05);
}

.login .input-box {
    width: 100%;
    height: 44px;
    margin: 15px 0;
}

.input-box input {
    width: 100%;
    height: 44px;
    border: none;
    background: white;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 14px;
    padding: 15px 0 13px 50px;
}

.input-box i {
    position: absolute;
    align-items: center;
    font-size: 20px;
    padding: 15px 15px 15px 15px;
}

.input-box:hover {
    box-shadow: 0 0 6px 0 var(--hover-color);
    border-radius: 6px;
}

.submit {
    width: 100%;
    height: 44px;
    border: none;
    outline: none;
    border-radius: 6px;
    background: var(--bt-color);
    cursor: pointer;
    font-size:medium;
    color: #DDD;
}

.submit:hover {
    background-color: #fa6491;
}

.infobt {
    margin-top: 15px;
    font-weight: 600;
    font-size: 50px;
}

.logo {
    width: 190px;
    margin-bottom: 5x;
    border-radius: 10px;
}


footer {
    bottom: 20px;
    align-items: center;
    text-align: center;
    position: absolute;
    margin: 0;
    padding: 0;
}

label.toggle {

    display: block;
    width: 100%;
    height: 40px;
    border: 4px solid var(--bt-color);
    cursor: pointer;
    border-radius: 20px;
    transition: var(--tran-05);
}

label.toggle::before {
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    border-radius: 50px;
    background: var(--bt-color);
    transition: var(--tran-05);
}

input.toggle {
    margin-top: 25px;
    width: 50px;
    height: 50px;
    display: none;
}

input.toggle:checked + label.toggle::before {
    position: relative;
    transition: var(--tran-05);
    left: 50%;
}

footer p {
    font-weight: 600;
    font-size:smaller;
    color: var(--text-color);
    margin-top: 10px;
}





