@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

body {
    background: url(../static/LoginBG.jpg) no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    min-width: 100vw;
}

main {
    display: flex;
    flex-direction: column;
    padding: 10px 100px;
    gap: 10px;
}

.Title {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.Title>img {
    width: 100px;
}

.Title>p {
    font-size: 30px;
    font-weight: bold;
}

.Header {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.Header>h1 {
    font-size: 120px;
    font-weight: bold;
    color: #272727;
    font-family: "League Spartan", sans-serif;
}

form {
    border-radius: 20px;
    border: 2px solid #111;
    background-color: #7b7b7b;
    position: relative;

    width: 400px;
    padding: 20px 40px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

#Username, #Password {
    width: 100%;
    padding: 20px;
    border: 2px solid #111 ;
    border-radius: 20px;

    font-size: 16px;
    color: #111;
    font-weight: bold;

    outline: none;
}

input::placeholder {
    color: #555555;
    font-size: 16px;
    font-weight: bold;
}

.Eye {
    position: absolute;
    width: 32x;
    height: 32px;
    right: 50px;
    top: 108px; /* Update */
    z-index: 2;

    cursor: pointer;
}

#OpenModal {
    background-color: #ffffff;
    border-radius: 20px;
    border: #111 solid 2px;

    color: #111;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;

    cursor: pointer;
    outline: none;
}

button {
    background-color: #272727;
    border-radius: 20px;

    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 20px;

    cursor: pointer;
    outline: none;
}

@media (max-width: 1200px) {
    
main {
    display: flex;
    flex-direction: column;
    padding: 10px 60px;
    gap: 10px;
}

.Title>img {
    width: 80px;
}

.Title>p {
    font-size: 26px;
}

.Header>h1 {
    font-size: 100px;
}

form {
    width: 350px;
}

#Username, #Password {
    padding: 15px;
    font-size: 14px;
}

input::placeholder {
    font-size: 12px;
}

#OpenModal {
    font-size: 14px;
}

.Eye {
    right: 50px;
    top: 90px; /* Update */
}

button {
    font-size: 14px;
}
}