* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    background-color: #111827;
    padding: 40px;
    border-radius: 15px;
    width: 350px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

.login-box h1 {
    color: rgb(8, 251, 0);
    margin-bottom: 10px;
}

.login-box h1 span {
    color: #3b82f6;
}

.login-box p {
    color: #9ca3af;
    margin-bottom: 25px;
}

form {
    display: flex;
    flex-direction: column;
}

input {
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    background-color: #1f2937;
    color: white;
}

input:focus {
    outline: 2px solid #3b82f6;
}

button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #3b82f6;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #2563eb;
}