@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}
:root {
    --bg-color: #eeeefa;
}

a {
    text-decoration: none;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: linear-gradient(
            180deg,
            rgba(0, 0, 64, 0),
            rgba(0, 0, 64, 1)
        ),
        url("../assets/bg-login.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.login-wrapper {
    width: 400px;
    padding: 32px;
    color: #fff;
    border-radius: 16px;
    /* border: 1px solid;
    border-image-slice: 16;
    border-width: 1px;
    border-image-source: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 29.58%,
        #8de4ff 100%
    ); */
    box-shadow: 0px 16px 16px 0px #68dbff1a;
    backdrop-filter: blur(10px);
    background-color: transparent;
}

.card-title {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}

.card-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.login-body {
    margin: 32px 0 2px;
}

form input {
    width: 100%;
    outline: none;
    padding: 12px 20px;
    margin-bottom: 10px;
    border: 1px solid #fff;
    border-radius: 4px;
    color: #fff;
    background-color: transparent;
}

form input::placeholder {
    color: #fff;
}

form input[type="checkbox"] {
    width: auto;
    margin-right: 4px;
    margin-bottom: 0;
}

button {
    width: 100%;
    font-size: 1rem;
    padding: 13px 20px 13px 24px;
    outline: none;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    color: #fff;
    background: #000040;
    box-shadow: 0px 6px 16px 0px #00000040;
}

.remember-forgot,
.register {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}
.forgot-link,
.register-link {
    color: #68dbff;
}
