body {
    background-color: #0f0f0f;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #ffffff;
}

.login-container {
    background: #1a1a1a;
    padding: 36px 28px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    width: 340px;
    box-sizing: border-box;
}

.logo-container {
    text-align: center;
    margin-bottom: 25px;
}

.logo-container img {
    max-width: 180px;
    height: auto;
}

form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

input {
    padding: 10px 12px;
    border: 1px solid #444;
    border-radius: 6px;
    background-color: #232323;
    color: #eee;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

input:focus {
    outline: none;
    border-color: #7f5fc7;
}

input::placeholder {
    color: #aaa;
}

button {
    padding: 10px;
    border: none;
    border-radius: 6px;
    background-color: #7f5fc7;
    color: white;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

button:hover {
    background-color: #674bbb;
}
