body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f9fc;
    color: #333;
    line-height: 1.6;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

#loginForm {
    width: 100%;
    max-width: 450px;
    margin: 80px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: 'Roboto', sans-serif;
}

#loginForm input {
    padding: 14px 18px;
    font-size: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    outline: none;
    transition: border 0.3s, box-shadow 0.3s;
}

#loginForm input:focus {
    border-color: #4b7bec;
    box-shadow: 0 0 8px rgba(75, 123, 236, 0.3);
}

#loginForm button {
    padding: 14px 18px;
    background-color: #4b7bec;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s ease-in-out;
}

#loginForm button:hover {
    background-color: #365eeb;
    transform: scale(1.05);
}

#loginForm #errorMsg {
    margin-top: 10px;
    color: #ff4d4d;
    font-size: 14px;
    text-align: center;
}

.username, .fullName, .city {
    font-size: 16px;
    color: #666;
}

.username {
    font-weight: 600;
    font-size: 20px;
    color: #4b7bec;
}

.fullName {
    font-weight: 500;
    font-size: 18px;
    color: #333;
}

.city {
    font-size: 14px;
    color: #aaa;
}

.logout {
    padding: 10px 20px;
    background-color: #4b7bec;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s, transform 0.2s ease-in-out;
}

.logout:hover {
    background-color: #365eeb;
    transform: scale(1.05);
}

.header .container {
    display: contents;
    flex-direction: column;
    align-items: flex-start;
}

.header .logout {
    margin-left: 20px;
}

.xp {
    margin: 40px auto;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 25px;
    width: 80%;
    background: linear-gradient(135deg, #4b7bec, #a1c4fd);
    color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.skills {
    margin: 40px auto;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.projects {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    height: fit-content;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 50px auto;
    width: 80%;
}

.projects rect {
    transition: all 0.3s ease;
}

.projects rect:hover {
    opacity: 0.7;
}

.auditRatio {
    margin: 50px auto;
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    justify-content: center;
    align-items: center;
}


@media screen {
    @media (max-width: 768px) {
        .header {
            flex-direction: column;
            align-items: flex-start;
        }

        #loginForm {
            width: 90%;
            padding: 20px;
        }

        .projects, .skills, .auditRatio {
            width: 90%;
        }
    }
}