@font-face {
    font-family: "Montserrat-light";
    src: url('../assets/font/Montserrat/static/Montserrat-Light.ttf');
    font-weight: light;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url('../assets/font/Montserrat/static/Montserrat-Regular.ttf');
    font-weight: light;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat-medium";
    src: url('../assets/font/Montserrat/static/Montserrat-Medium.ttf');
    font-weight: medium;
    font-style: normal;
}


@font-face {
    font-family: "Montserrat-bold";
    src: url('../assets/font/Montserrat/static/Montserrat-Bold.ttf');
    font-weight: bold;
    font-style: normal;
}


body
{
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 100vh;
    margin: 0;
    background-image: url('../assets/image/bgloginpage.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    font-family: "Montserrat-light";
}

#top
{
    height: 30vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

#logo
{
    width: 4rem;
    height: 5rem;
}

.small-header
{
    font-family: 'Montserrat-medium';
    color: #24441C;
    font-size: 5vw;
    font-weight: 400;
    margin-bottom: 0.3rem;
    /* background-color: yellow; */
}

.large-header
{
    font-family: 'Arial';
    font-weight: bold;
    width: 80vw;
    color: #24441C;
    font-size: 5vw;
    line-height: 5.5vw;
}

#winning
{
    font-weight: normal;
    font-size: 4.5vw;
}

#bottom
{
    position: relative;
    width: 100vw;
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#blur-bg
{
    position: absolute;
    width: 80vw;
    height: 55.8vh;
    backdrop-filter: blur(7px); /* The blur effect */
    background-color: rgba(255, 255, 255, 0.1); /* Optional semi-transparent overlay */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: -1;
}

#desc
{
    width: 55vw;
    margin-top: 1rem;
    margin-right: 15vw;
    position: relative;
    font-family: 'Montserrat';
    font-size: 5vw;
    font-weight: 500;
    text-align: left;
    text-wrap: wrap;
    color: #24441C;
    line-height: 5.5vw;
}

#desc-bold
{
    width: 55vw;
    margin-right: 15vw;
    margin-bottom: 0.3rem;
    font-family: 'Montserrat-bold';
    text-align: left;
    font-size: 5vw;
    color: #24441C;
}

img#orang
{
    position: absolute;
    right: -5vw;
    width: 70%;
    height: 70%;
    z-index: 0;
}

#form-nik
{
    position: absolute;
    top: 32vw;
    width: 80vw;
    height: 40vh;
    right: 10vw;
}

#form-container
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#input-nik
{
    width: 64vw;
    height: 12vh;
    background-color: #44C65A;
    border-radius: 20px;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.input input#nik
{
    width: 50vw;
    height: 4vh;
    border-radius: 10px;
    border-color: transparent;
    padding-left: 2vw;
    padding-right: 2vw;
    padding-top: 1vh;
    padding-bottom: 1vh;
    font-family: 'Montserrat';
    font-size: 4vw;
    color: #24441C;
    transition: width 0.3s ease, height 0.3s ease;
}

.input input#nik::placeholder
{
    font-family: 'Montserrat';
    color: #24441C;
    font-size: 4vw;
}

.input input#nik:focus
{
    width: 55vw;
    height: 2.5rem;
    border-color: #F8FC0C;
    font-size: normal;
}

.warning
{
    font-family: Montserrat-medium;
    color: #24441C;
    font-size: medium;
}

button.submit
{
    width: 30vw;
    height: 5vh;
    margin-bottom: 5vh;
    border-radius: 3vh;
    border-color: transparent;
    background-color: #F8FC0C;
    color: #24441C;
    font-family: 'Montserrat-bold';
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
    font-size: 3vw;
}

button.submit:hover
{
    background-color: #24441C;
    color: white;
}