body { font-family: 'Segoe UI', sans-serif; 
    background: #f0f2f5; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 100vh; 
    margin: 0; }
.login-container { 
    background: white; 
    padding: 30px; 
    border-radius: 12px; 
    box-shadow: 0 8px 24px rgba(0,0,0,0.1); 
    width: 320px; 
    text-align: center; }
input { 
    width: 100%; 
    padding: 12px; 
    margin: 10px 0; 
    border: 1px solid #ddd; 
    border-radius: 6px; 
    box-sizing: border-box; }
button { 
    width: 100%; 
    padding: 12px; 
    background: #007bff; 
    color: white; 
    border: none; 
    border-radius: 6px; 
    cursor: pointer; 
    font-weight: bold; }
button:hover { 
    background: #0056b3; }
#message { 
    margin-top: 15px; 
    font-size: 14px; }
.container{
        width:300px;
        margin:100px auto;
        background:white;
        padding:20px;
        text-align:center;
        border-radius:10px;
}

input{
    width:100%;
    padding:10px;
}