/* login */
    body {
        margin: 0;
        padding: 0;
        font-family: sans-serif;
        background-color: #eeeeee;
    }

    .box {
        width: 500px;
        padding: 40px;
        background: #FFFFFF;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    

    .box input[type="text"],
    .box input[type="password"] {
        border: 0;
        background: none;
        display: block;
        margin: 20px auto;
        text-align: center;
        border: 2px solid #3498db;
        padding: 10px 10px;
        width: 250px;
        outline: none;
        color: #808080;
        border-radius: 24px;
        transition: 0.25s
    }

    .box h1 {
        color: #081f57;
        text-transform: uppercase;
        font-weight: 500
    }

    .box input[type="text"]:focus,
    .box input[type="password"]:focus {
        width: 300px;
        border-color: #081f57
    }

    .box input[type="submit"] {
        border: 0;
        background: none;
        display: block;
        margin: 20px auto;
        text-align: center;
        border: 2px solid #081f57;
        padding: 14px 40px;
        outline: none;
        color: #081f57;
        border-radius: 24px;
        transition: 0.25s;
        cursor: pointer
    }

    .box input[type="submit"]:hover {
        color: #FFFFFF;
        background: #081f57
    }