@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #008080, #7fdbff);
}

footer {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    color: #333;

}

.mini {
    color: white;
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}

.container {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    min-width: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.container i {
    font-size: 80px;
    margin-bottom: 20px;
    color: #333;
}

h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0a0a0a;
}

label {
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    margin: 10px 0;
    display: block;
    color: #0a0a0a;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #555;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    background-color: rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

input::placeholder {
    color: rgba(51, 51, 51, 0.7);
}

.buttons {
    display: flex;
    gap: 20px;
}

button {
    flex: 1;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 500;
    background-color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #555;
}

textarea {
    resize: none;
}