body {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.note {
    background: #f5f0e8;
    border-left: 4px solid #c8a96e;
    border-radius: 2px 6px 6px 2px;
    padding: 18px 22px;
    width: 420px;
    max-width: 90%;
    margin-bottom: 14px;
    box-shadow: 3px 3px 12px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.8);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.note:hover {
    transform: translateX(4px);
    box-shadow: 5px 5px 18px rgba(0,0,0,0.5);
}

.note_p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #2c2416;
}



.bodyLogin {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: #000000;
}

.bodyLogin form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    width: 280px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.bodyLogin input {
    padding: 10px;
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid black;
}

.bodyLogin button {
    padding: 10px;
    cursor: pointer;
    border-radius: 10px;
    background-color: rgb(0, 26, 255);
    color: white;
    border: none;
}