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

body {
    display: grid;
    place-items: center;
    height: 100vh;
    background-color: #1A237E;
    align-content: start;
}

.header {
            width: 80%;
            max-width: 800px;
            color: white;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: space-around;
            padding-bottom: 20px;
        }
        .header img {
            max-width: 2.5vw;
            height: auto;
            padding-right: 20px;
        }
        .header h1 {
            font-size: 2.5em;
            align-self: center;
        }


        .login-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 350px;
        }
        .login-container h2 {
            margin-bottom: 1.5rem;
            color: #1A237E;
        }
        .input-group {
            display: flex;
            align-items: center;
            width: 100%;
            margin-bottom: 1rem;
            border: 1px solid #1A237E;
            border-radius: 5px;
            overflow: hidden;
        }
        .input-group span {
            background: #E0E0E0;
            padding: 0.75rem;
            color: #757575;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .input-group input {
            width: 100%;
            padding: 0.75rem;
            border: none;
            outline: none;
        }
        .login-btn {
            background: #1A237E;
            color: white;
            padding: 0.75rem;
            width: 100%;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
        }
        .login-btn:hover {
            background: #0D1B5A;
        }
