* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.body-index{
    background-image: url("assets/gambar/gambar1.jfif");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    margin: 0;
}

body{
	background-image: url("assets/gambar/911.jpeg");
    background-color: black;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    margin: 0;
}

.box{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

.container{
    width: 350px;
    display: flex;
    flex-direction: column;
    padding: 0 15px 0 15px;
    background-color: #7575754f;
    backdrop-filter: blur(8px);
    border-radius: 15px;
    box-shadow: 0px 0px 10px 2px #8d8d8db4;
}

.kon{
    width: 350px;
    margin: 0 auto;
    padding: 10px;
}

header{
    color: #ffffff;
    font-size: 15px;
    font-weight: bolder;
    display: flex;
    justify-content: center;
    padding: 10px 0 15px 0;
}

.input-field{
    display: flex;
    flex-direction: column;
    margin: 15px;
    align-items: center;
}

.input-field .input{
    height: 40px;
    width: 87%;
    border: none;
    outline: none;
    border-radius: 30px;
    color: #000000;
    padding: 10px;
    background: #ffffff;
    text-align: center;
}

::-webkit-input-placeholder{
    color: rgb(0, 0, 0,0.5);
}

.submit{
    border: none;
    border-radius: 30px;
    font-size: 15px;
    height: 40px;
    outline: none;
    width: 60%;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: .3s;
    margin-top: 10px;
    display: block;
    margin-left: auto;
    margin-right: 85px;
}

.submit:hover{
    box-shadow: 1px 5px 7px 1px rgba(0, 0, 0, 0.2);
}

.header {
    background-color: #4a4a4a;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-index{
    color: #ffffff;
    font-size: 30px;
    font-weight: bolder;
    display: flex;
    justify-content: center;
    padding: 10px 0 15px 0;
}

.header h1 {
    margin: 0;
}

.nav {
    display: flex;
    gap: 15px;
}

.nav a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav a:hover {
    background-color: #000000;
}