body{
    background: #fff0f6;
    font-family: Arial;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box{
    background: white;
    padding: 40px;
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-top: 5px solid #ff1493;
    border-bottom: 5px solid #ff1493;
}

h2{
    text-align: center;
    color: #ff1493;
    margin-bottom: 20px;
}

input{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

button{
    width: 100%;
    padding: 10px;
    background: #ff1493;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

button:hover{
    background: #ff69b4;
}