@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background: url('assets/background.jpg');
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    backdrop-filter: blur(10px);
}

h1 {
    margin-bottom: 20px;
    font-size: 26px;
    color: #1a02f3;
    font-weight: 500;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #042875;
    text-align: left;
}

input {
    margin-bottom: 20px;
    padding: 12px 15px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
    background-color: rgba(255, 255, 255, 0.3);
    color: #333333;
}

input:focus {
    border-color: #0044ff;
    outline: none;
}

button {
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background-color: #0062ff;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0086b3;
}

canvas {
    margin-top: 30px;
    max-width: 100%;
    height: auto;
}
