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

body {
    font-family: 'Inter', sans-serif;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    color: #222;
}

h1, h2 {
    text-align: center;
    color: #333;
}

img {
    display: block;
    max-width: 100%;
    margin: 20px auto;
    border-radius: 8px;
}

form {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    
}

textarea {
    resize: vertical;
}

button {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

.alert-lost {
    background: red;
    color: white;
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

p {
    margin: 10px 0;
}

a.button-link {
    display: inline-block;
    margin-top: 10px;
    background: #28a745;
    padding: 10px 16px;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

a.button-link:hover {
    background: #218838;
}


label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    margin-top: 10px;
}

.success-msg {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

a.share-button {
    display: inline-block;
    margin-top: 15px;
    background: #6c757d;
    padding: 10px 14px;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    
}

a.share-button:hover {
    background: #5a6268;
}


input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
select,
textarea {
    font-size: 16px;
    padding: 12px;
    height: auto;
}
