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

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

body {
    background-color: #0d1117;
}

.login-box { 
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    justify-content: space-around;
    width: 350px;
    height: 350px;

    .title p {
        font-size: 25px;
        color: #fff;
    }

    .login-content {
        width: 100%;
        display: flex;
        flex-direction: column;

        .username-content {
            padding: 10px;
            background-color: #1c2431;
            display: flex;
            align-items: center;
            margin-bottom: 35px;
            border-radius: 25px;
        }

        .password-content {
            padding: 10px;
            background-color: #1c2431;
            display: flex;
            align-items: center;
            border-radius: 25px;
        }

        i {
            color: #fff;
            font-size: 30px;
        }

        input { 
            color: #fff;
            width: 100%;
            line-height: 30px;
            background-color: transparent;
            border: 1px solid #1c2431;
            margin-left: 10px;
        }

        input:focus {
            outline: none;
        }
    }

    .login-button {
        width: 100%;
        margin-top: 35px;

        button{
            width: 100%;
            line-height: 35px;
            font-size: 18px;
            background-color: transparent;
            color: #fff;
            border: 3px solid #1c2431;
            border-radius: 25px;
            transition: .5s;
        }

        button:hover {
            cursor: pointer;
            background-color: #1c2431;
            transition: .5s;
        }
    }
}

