@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

body {
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #5019d1, #5230a1, #2a155c, #9a1fad);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    color: #E0E0E0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    gap: 40px;
}


@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

h1 {
    font-size: 2.5rem;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
}

form, form1 {
    background-color: rgba(30, 30, 30, 0.95);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input[type="text"], input[type="password"] {
    background-color: #2A2A2A;
    color: #E0E0E0;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 10px;
    font-size: 1rem;
    outline: none;
}

input[type="text"]:focus, input[type="password"]:focus {
    border-color: #6200EE;
}

button {
    background-color: #6200EE;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #3700B3;
}

button:active {
    background-color: #03DAC6;
}

p {
    text-align: center;
    color: #BB86FC;
    font-size: 1.2rem;
    margin-top: 20px;
}

.key-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.key-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.key-text {
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    padding: 5px;
    text-overflow: ellipsis;
}

.copy-btn {
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
}
