
body {
    margin: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    height: calc(100% - 40px);
    width: 100%;
    background-image: repeating-linear-gradient(white 0px, rgba(255, 255, 255, 0.704) 24px, rgba(70, 131, 180, 0.216) 25px);

    
}

/* GIF Background Grid */
.gif-background {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    gap: 0;
    z-index: -1;
    overflow: hidden;
}

.gif-tile {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.gif-tile img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: brightness(1);
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    z-index: 1;
}
.login-box {
    background: linear-gradient(to right, #ffffff, rgb(255 255 255 / 76%));
    backdrop-filter: blur(30px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgb(0 0 0 / 7%);
    text-align: center;
    width: 300px;
    height: 330px;
}
h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: rgb(155 181 255);
    margin-bottom: 30px;
}
input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #e7e7e7;
    background: #ffffff87;
    color: rgb(0, 0, 0);
    outline: none;
    box-sizing: border-box;
}
input::placeholder {
    color: #999;
}
button {
    width: 100%;
    padding: 10px 30px;
    border-radius: 10px;
    background: linear-gradient(to right, #8e8e8e00, #00000000);
    color: rgb(255 179 195);
    font-weight: bold;
    border: 1px #0000001a solid;
    cursor: pointer;
    transition: 0.3s all ease;
}
button:hover {
    border: 1px rgb(255 179 195) solid;
    color: rgb(255 179 195);
    box-shadow: #b6b6b62a 2px 2px 3px 0px;
}
#error {
    font-size: 14px;
    color: rgb(255 179 195);
    margin-top: 20px;
    min-height: 20px;
}

.line{
    position: absolute;
    height: 100vh;
    border-left: 3px solid rgba(255, 0, 0, 0.182);
    margin-left: 60px;
    z-index: -1;
}

.hole1, .hole2{
    position: absolute;
    width: 20px;
    height: 20px;
    left: 18px;
    border: 3px solid rgba(0, 0, 0, 0.049);
    background-color: #ffffff;
    border-radius: 50%;


  background: rgb(255, 255, 255);
  border-radius: 50%;
  box-shadow: inset 0px 0px 2px 0px #b6b6b6;
}

.hole1{
    top: 20vh;
}

.hole2{
    bottom: 20vh;
}

