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

.login-container {
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.login-container:hover {
    transform: scale(1.02);
}

.logo {
    width: 180px;
    margin-bottom: 20px;
    background-color: #1a1a1a;
    padding: 10px;
    border-radius: 10px;
}

h2 {
    margin-bottom: 20px;
    color: #333;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="text"],
input[type="password"] {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: 0.2s border ease;
    font-size: 16px;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border: 1px solid #007bff;
}

button {
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

button:hover {
    background-color: #0056b3;
}


.logo-container {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 30px;
}

.logo-container img {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
                      


button {
    padding: 12px;
    background: linear-gradient(to right, #007bff, #00c6ff);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

button:hover {
    transform: translateY(-2px);
    background: linear-gradient(to right, #0056b3, #0096c7);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}
