body {
    font-family: 'Segoe UI', cursive, sans-serif;
    font-size: 150%;
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

h1 {
    text-align: center;
    color: #3a3a3a;
    margin-top: 40px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 8px #b1b1b1;
}

label {
    color: #444;
    margin-right: 10px;
}

input[type="text"], input[type="password"] {
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #a0c4ff;
    border-radius: 8px;
    font-size: 1em;
    width: 220px;
    transition: border-color 0.3s;
    background: #f7fbff;
}

input[type="text"]:focus, input[type="password"]:focus {
    border-color: #4361ee;
    outline: none;
}

button {
    padding: 10px 22px;
    margin: 10px 8px 10px 0;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #4361ee 0%, #48bfe3 100%);
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(67, 97, 238, 0.15);
    transition: background 0.3s, transform 0.2s;
}

button:hover {
    background: linear-gradient(90deg, #48bfe3 0%, #4361ee 100%);
    transform: translateY(-2px) scale(1.05);
}

p#myp3 {
    margin-top: 20px;
    text-align: center;
    color: #4361ee;
    font-weight: bold;
    min-height: 32px;
}

input#newname {
    margin-top: 20px;
    display: block;
    margin-left: 0;
}