@import url('https://fonts.googleapis.com/css2?family=Judson:ital,wght@0,400;0,700;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-font-family: "Poppins", sans-serif;
    --light-white: #f5f8fa;
    --gray: #5e6278;
    --gray-1: #e3e3e3;
}

body {
    font-family: var(--primary-font-family);
    font-size: 14px;
    margin: 0;
    padding: 0;
    background-image: url('../img/backgroundlab.jpg'); /* Ensure the path is correct */
    background-repeat: no-repeat;
    background-size: cover; /* Ensures the image fully covers the viewport */
    background-attachment: fixed; /* Keeps the image static during scroll */
    background-position: center; /* Centers the background image */
    min-height: 100vh; /* Ensures it spans at least the full viewport height */
}

.wrapper .logo img {
    max-width: 40%;
}

.wrapper #UserName,
.wrapper #Password {
    background-color: var(--light-white);
    color: var(--gray);
}

.wrapper input:focus {
    box-shadow: none;
    font-weight: 500;
}

.wrapper .login_width {
    padding: 15px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease-in-out;
}

    .wrapper .submit_btn_focus,
    .wrapper .login_width:focus
