@font-face {
    font-family: laila;
    src: url(./assets/font/Laila/Laila-Regular.ttf);
}
@font-face {
    font-family: laila-bold;
    src: url(./assets/font/Laila/Laila-Bold.ttf);
}

body {
    padding: 0px;
    margin: 0px;
    height: 100vh;
    overflow: hidden;
}

p.text-number {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 400;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
}

p.count_number {
    font-family: laila-bold;
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    z-index: 1;
    color: #137cc0;
    margin-top: 3rem;
    text-shadow: 1px 1px 2px black;
}

.logo_image {
    width: 8rem;
}

header nav.nav {
    width: 100vw;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

div.image-and-text-container {
    position: relative;
    height: 95vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

img.number_container {
    position: absolute;
    bottom: 0;
    height: 100%;
}

img.header-image-section {
    height: 6vh;
    margin-top: 5rem;
}

section.main {
    background-color: #1a0932;
    overflow: hidden;
    height: 95rem;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.number_container {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 2rem;
}



p.enter_emp_code {
    color: #137cc0;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    letter-spacing: 0.5px;
}

input.password_input_txt {
    background: transparent;
    border-bottom: 3px solid #137bbf;
    border-left: none;
    width: 15rem;
    font-size: 2rem;
    color: #137cc0;
    border-right: none;
    padding: 2px 25px;
    text-align: center;
    letter-spacing: 15px;
    border-top: none;
}

input.password_input_txt:focus-visible {
    outline: none;
}

button.login_submit_btn {
    border: 1px solid #5bb1ea;
    background: #5bb1ea;
    padding: 7px 25px;
    border-radius: 25px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 10rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}