input[type="text"], input[type="password"], select {
    padding: 12px;
    border: 2px solid #00FFA3;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

input[type="text"]:focus, input[type="password"]:focus, select:focus {
    border-color: #009f7f;
    box-shadow: 0 0 10px rgba(0, 159, 127, 0.5);
    outline: none;
}

button {
    padding: 12px 20px;
    background-color: #00FFA3;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1), 
            box-shadow 0.7s cubic-bezier(0.25, 0.8, 0.25, 1),
            background-color 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

button:hover {
    transform: scale(1.05); 
    box-shadow: 0 5px 15px rgba(0, 159, 127, 0.3); 
    background-color: #009f7f; 
}

button:active {
    transform: scale(1.03); 
    box-shadow: 0 5px 20px rgba(0, 159, 127, 0.4);

}

input[type="text"]::placeholder, input[type="password"]::placeholder {
    position: absolute;
    left: 10px;
    top: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

input[type="text"]:focus::placeholder, input[type="password"]:focus::placeholder {
    opacity: 0;
    transform: translateY(-10px);
}


        body {
            font-family: 'Poppins', sans-serif;
            background-color: #121212;
            color: #f0f0f0;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 10%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            transition: background 0.3s;
        }

        .navbar h1 {
            font-size: 1.8em;
            color: #00FFA3;
            margin: 0;
        }

        .navbar ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }

        .navbar ul li {
            margin-left: 20px;
        }

        .navbar ul li a {
            text-decoration: none;
            color: #f0f0f0;
            font-weight: 500;
            transition: color 0.3s;
        }

        .navbar ul li a:hover {
            color: #00FFA3;
        }

        @media (max-width: 768px) {
            .navbar ul {
                flex-direction: column;
                position: absolute;
                top: 100%;
                right: 10%;
                background-color: rgba(0, 0, 0, 0.9);
                padding: 10px;
                border-radius: 5px;
                display: none;
            }

            .navbar ul li {
                margin: 10px 0;
            }

            .navbar.show ul {
                display: flex;
            }

            .menu-toggle {
                display: block;
                background-color: #00FFA3;
                padding: 10px;
                border-radius: 5px;
                cursor: pointer;
                color: #121212;
                font-weight: bold;
            }
        }

        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background-color: #1c1c1c;
            color: #fff;
            position: relative;
            padding: 0 20px;
        }

        .content {
            padding: 100px 20px;
            background-color: #1c1c1c;
            text-align: center;
        }

        .content h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: #00FFA3;
        }

        .content p {
            font-size: 1.2em;
            line-height: 1.6em;
            max-width: 800px;
            margin: 0 auto 40px;
            color: #f0f0f0;
        }

        .hashing-tool {
            background-color: #2c2c2c;
            padding: 30px;
            border-radius: 10px;
            max-width: 600px;
            margin: 20px auto;
            color: #f0f0f0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .hashing-tool input, .hashing-tool select {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: none;
            border-radius: 5px;
            background-color: #1c1c1c;
            color: #f0f0f0;
            font-size: 1em;
        }

        .hashing-tool button {
            padding: 15px 30px;
            background-color: #00FFA3;
            color: #121212;
            border-radius: 30px;
            font-weight: bold;
            text-decoration: none;
            border: none;
            transition: background-color 0.3s ease;
        }

        .hashing-tool button:hover {
            background-color: #00cc85;
        }

        .result {
            margin-top: 20px;
            padding: 15px;
            background-color: #1c1c1c;
            border-radius: 5px;
            color: #00FFA3;
        }

        .loading {
            margin-top: 20px;
            display: none;
            font-size: 1.5em;
            color: #00FFA3;
        }

        .error {
            margin-top: 20px;
            padding: 15px;
            background-color: #e74c3c;
            border-radius: 5px;
            color: #fff;
        }

        /* Tooltip Style */
        .tooltip {
            position: relative;
            display: inline-block;
            cursor: pointer;
        }

        .tooltip .tooltip-text {
            visibility: hidden;
            width: 200px;
            background-color: #333;
            color: #fff;
            text-align: center;
            border-radius: 5px;
            padding: 5px;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 50%;
            margin-left: -100px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .tooltip:hover .tooltip-text {
            visibility: visible;
            opacity: 1;
        }

        #copyButton {
            padding: 10px 20px;
            background-color: #00FFA3;
            color: #121212;
            border-radius: 5px;
            font-weight: bold;
            border: none;
            margin-top: 10px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        #copyButton:hover {
            background-color: #00cc85;
        }

        .copy-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
    font-size: 1.2em;
    z-index: 1000;
    transition: opacity 0.5s;
}

#hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('favicon.ico') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 0 20px; 
}

.hero-content {
    max-width: 800px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn {
    background-color: #ff6600; 
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e55a00;
}