body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-image: url('../img/petitrian-hbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-end;
    /* Align to the right */
    align-items: center;
    /* Vertically center */
}

.login-container {
    margin-right: 10%;
    /* Spacing from the right edge */
    background-color: rgba(255, 255, 255, 0.85);
    /* Slightly opaque white */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 250px;
    backdrop-filter: blur(5px);
    /* Optional: adds a nice blur effect behind */
}

.login-title {
    text-align: center;
    font-size: 18px;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
    margin-bottom: 15px;
    color: #744e16;
    font-weight: 600;
    letter-spacing: 2px;
}

.form-group {
    margin-bottom: 20px;
}

input[type="password"] {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    /* Ensures padding doesn't affect width */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input[type="password"]:focus {
    border-color: #744e16;
    outline: none;
}