@import url(global.css);
@import url(nuicron.css);

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--background);
}

#login_window {
    background-color: var(--button);
    border-radius: 12px;
    border: 2px solid var(--hover);
    width: 400px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#login_content {
    width: 80%;
}


#login_img_layer {
    width: 100%;
    display: flex;
    justify-content: center;
}

#login_window img {
    width: 40%;
}

#login_btn_layer {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

#login_button {
    background-color: #7783FC;
    padding: 12px 40px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

#login_button span {
    font-family: "Assistant";
    color: var(--text);
    font-weight: 500;
    font-size: 16px;
}

#login_button:hover {
    cursor: pointer;
    scale: 1.05;
}

p {
    line-height: 1.6;
}

p a {
    text-decoration: none;
    color: var(--accent);
}

p a:hover {
    text-decoration: underline;
}