@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    height: 100vh;
    background-color: #343a40;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    color: #f8f9fa;
}

.login-container {
    background: #343a40;
    padding: 2rem;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    background: #343a40;
    box-shadow: inset 6px 6px 3px #292e33,
            inset -6px -6px 3px #3f464d;
}

.login-container h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: #ffffff;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #cccccc;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #444;
    border-radius: 4px;
    outline: none;
    background-color: #e8f0fe;
    color: #000;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #456edf;
}


.login-button {
    cursor: pointer;
    width: 100%;
    padding: 0.8rem;
    background-color: #343a40;
    color: #0dafeb;
    border: 2px solid #ced4da;
    border-radius: 4px;
    font-size: 1.5rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    text-align: center; 
}

.login-button:hover {
    background-color: #31363b;
    border-color: #6c757d;
    color: #02b6f8;
}

.footer {
    text-align: center;
    margin-top: auto; 
    padding: 1rem;
    font-size: 1.2rem;
    color: #888888;
    background-color: #343a40; 
    width: 100%;
}
