*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../imgs/nature.png');
    background-size: cover;
    background-position: center;
    font-family: Arial, sans-serif;
}
.container{
    background: #0000004d;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
form{
    display: flex;
    flex-direction: column;
}
.input{
    width: 300px;
    height: 40px;
    padding: 10px;
    margin-bottom: 10px;
    background: #00000050;
    border: 1px solid #00000067;
    border-radius: 4px;
    outline: none;
    color: white;
    transition: border-color 0.3s;
}
::placeholder{
    color: white;
}
.input-birth{
    color: white;
    
}
.input:hover{
    border-color: rgb(0, 123, 255);
}
.submit-button{
    background: #00000056;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover{
    background: #0000007e;
}
.information{
    margin-top: 20px;
    
}
.delete-button{
    width: 100%;
    background: #00000056;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 3px;

}
.delete-button:hover{
    background: #0000007e;
}
.edit-button{
    width: 100%;
    background: #00000056;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 3px;

}
.personDivP{
    margin: 5px 0;
    font-size: 16px;
    color: #ffffff;
    text-align: left;
    line-height: 1.4;
    word-wrap: break-word;
    white-space: pre-wrap;
}