* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: url('../images/4ca9a3de-65ff-42a3-bb49-1405288fc566.webp') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.logo-position {
    position:absolute;
    top:10px;
    left:70px;
    width:150px;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.login-box {
    background: rgba(0,0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.7);
    text-align: center;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px); /* Effet de flou pour Chrome */
    -webkit-backdrop-filter: blur(10px); /* Effet de flou pour Safari */
}

.login-box h1 {
    margin-bottom: 30px;
    color: #fff;
    font-size: 32px;
}

.textbox {
    margin-bottom: 20px;
}

.textbox input {
    width: 100%;
    padding: 10px;
    background: #333;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
}

.btn {
    width: 75%;
    padding: 10px;
    background: #27ae60;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: white;
    border-radius: 5px;
    transition: background 0.3s;
    margin-right:20px;
}

.passkey-btn {
    position:relative;
    width:48px;
    top:18px;
    cursor:pointer;
    opacity:0.5;
}

.passkey-btn:hover {
    opacity:1;
}


.btn:hover {
    background: #2ecc71;
}

