@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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
}

code {
    font-family: 'Courier New', Courier, monospace;
}

.container {
    width: 420px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(30px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: #fff;
    border-radius: 10px;
    padding: 30px 40px;
    text-align: center;
}

.container button {
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

.container button:hover {
    cursor: pointer;
    transform: scale(1.10);
    background: #FFF;
    color: #000;
}

.container .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 10px 0;
}

.container h1 {
    font-size: 36px;
}

.container-register {
    width: 420px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(30px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: #fff;
    border-radius: 10px;
    padding: 30px 40px;
    text-align: center;
}

.container-register button {
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

.container-register button:hover {
    cursor: pointer;
    transform: scale(1.10);
    background: #FFF;
    color: #000;
}

.container-register .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 10px 0;
}

.container-register h1 {
    font-size: 36px;
}

.navbar {
    display: flex;
    width: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    justify-content: center;
    align-items: center;
    align-content: center;
    height: 12.5vh;
    padding: 15px;
}

.logo {
    width: 10vw;
    display: flex;
    width: 10vh;
    position: absolute;

}

.navbar-login-register {
    display: flex;
    position: fixed;
    right: 15px;
    top: 15px;
    justify-content: space-between;
    gap: 10px;
    text-align: right;
}

.navbar-login-register button {
    width: 100px;
    height: 45px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

.navbar-login-register button:hover {
    cursor: pointer;
    transform: scale(1.10);
    background: #FFF;
    color: #000;
}

.front-page-name {
    width: 50vh;
    height: 91px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(30px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: #fff;
    border-radius: 10px;
    padding: 10px 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

}

/* FRONT PAGE CLOCK */

.navbarContainer {
    display: flex;
    position: fixed;
    top: 15px;
    left: 15px;
}

.navbarTime {
    padding: 0px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(30px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .4);
    border-radius: 10px;
    width: 200px;
    font-size: 18px;
    text-align: center;
    word-spacing: 25px;
}

.date {
    color: whitesmoke;
    font-weight: bold;
}

.time {
    color: #ff0000;
    font-size: 20px;
    font-weight: bold;
}

.timeText {
    font-size: 13px;
    color: whitesmoke;
    align-items: center;
    word-spacing: 55px;
    font-weight: bold;
}

/* FRONT PAGE CLOCK */

.footer {
    position: absolute;
    left: 5px;
    bottom: 5px;
    font-size: 10px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(30px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: #fff;
    border-radius: 10px;
    padding: 1px 10px;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
}

.input-box select {
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    padding: 0 20px;
}

.input-box option {
    background: #333;
    color: #fff;
}

.input-box input::placeholder {
    color: #fff;
}

.login-icon {
    position: absolute;
    right: 20px;
    top: 58%;
    transform: translateY(-50%);
    filter: brightness(0) invert(1);

}

.register-link {
    display: flex;
    justify-content: center;
    font-size: 14.5px;
    margin: 15px 0 -15px;
}

.register-link a {
    color: #fff;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}

.container .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: -15px 0 15px;
}

.remember-forgot .register-link label input {
    accent-color: #fff;
    margin-right: 4px;
}

.remember-forgot .register-link a {
    color: #fff;
    text-decoration: none;
}

.remember-forgot .register-link a:hover {
    text-decoration: underline;
}

.maint-flexbox {
    justify-content: center;
    display: flex;
    gap: 20px;
}

.maint-home {
    justify-content: center;
    display: flex;
    width: 100%;
    gap: 10px;
}

.page-navbar {
    background: #333;
    width: 100%;
    height: 40px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.page-navbar button {
    height: 30px;
    padding: 0 5px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 700;
    position: fixed;
    top: 5px;
    right: 5px;

}

.page-navbar h1 {
    color: #fff;
    font-size: 20px;
}

.maint-cards {
    background: transparent;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
    width: 99%;
    position: absolute;
    display: flex;
    top: 6vh;
}

.maint-info {
    background: #333;
    justify-content: center;
    display: flex;
    width: 100%;
    gap: 10px;
}

.tiles-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    align-content: flex-start;
}

.tile {
    flex: 1 0 250px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    width: 250px;
    max-width: 250px;
    height: 70px;
    display: flex;
}

.tile h2 {
    display: flex;
    justify-content: left;
    height: 70px;
    position: relative;
    top: -20px;
    text-align: center;
    align-items: center;
}

.tile:hover {
    transform: scale(1.05);
}

.flexTile image {
    width: 10px;
}

.maintenanceTileHeaderText {
    width: 25%;
    height: 25%;
}

.tilePicture {
    width: 50px;
    height: 50px;
    position: relative;
    top: -10px;
    right: -115px;
}

.tileLinks {
    text-decoration: none;
    color: black;

}

.tileLinks:hover {
    color: black;
}

.sidebar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 200px;
}

.main-qa {
    position: absolute;
    top: 50px;
    right: 10px;
    left: 10px;
    bottom: 30px;
}

.sidebar-box {
    position: absolute;
    top: 100px;
    bottom: 0;
    left: 0;
    width: 200px;
    border-radius: 10px;
    background: #333;
    color: #fff;
    text-align: center;
}

.sidebar-box button {
    width: 90%;
    height: 25px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 700;
    margin: 5px;
}

.sidebar-box button:hover {
    cursor: pointer;
    transform: scale(1.05);
    background: #FFF;
    color: #000;
}

.sidebar-clock-container {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
}

.sidebar-clock-time {
    padding: 0px;
    border-radius: 10px;
    background: #333;
    color: #fff;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-size: 18px;
    text-align: center;
    word-spacing: 25px;
}

.clock-date {
    color: whitesmoke;
    font-weight: bold;
}

.clock-time {
    color: #ff0000;
    font-size: 20px;
    font-weight: bold;
}

.sidebar-clock-time-text {
    font-size: 13px;
    color: whitesmoke;
    align-items: center;
    word-spacing: 55px;
    font-weight: bold;
}