body {
            background: linear-gradient(to bottom right, rgba(128, 128, 128, .75), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5), rgba(128, 128, 128, .75)), linear-gradient(to bottom left, rgba(128, 128, 128, 1), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5), rgba(128, 128, 128, 1));            
            background-blend-mode: normal;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 100vh;
            min-width: 100vw;
            justify-content: center;
            align-items: center;
            font-family: 'Poppins', sans-serif;
            margin: 0;
            display: grid;
        }
header{
    position:absolute;
    top: 10%;
    left: 50%;
    text-align: center;
    transform: translatex(-50%);
    font-family: 'Inter', sans-serif;
    font-size: xx-large;
}
    .navbar{
                position:fixed;
        top: 0;
        width:100%;
        float:left;
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;

    }

    .navbar a{
        float: left;
        display: block;
        padding: 14px 20px;
    }
        .container {
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            padding: 2rem;
            min-width: 50vw;
            height: 50vh;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: center; 
            margin: auto;
        }
        h1, h2 {
            color: #2d3748;
            font-size: var(--text-3xl);
            font-weight: 700;
            text-align: center;
            margin-bottom: calc(var(--spacing) * 6);
        }
        .btn {
            transition: all 0.3s ease;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        input[type="text"], input[type="password"], input[type="file"] {
            max-width: 100%;
            box-sizing: border-box;
        }
        .login-form {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }