
.main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    flex-direction: column;
}


form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 300px;
}


input[type="text"] {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px 15px;
    border: 2px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}


input[type="text"]:focus {
    border-color: #ffb9b9;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 5px rgba(255, 185, 185, 1);
    outline: none;
}


input[type="submit"] {
    padding: 10px;
    border: none;
    background-color: #ffb9b9;
    color: white;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


input[type="submit"]:hover {
    background-color: #a02727;
}

input::placeholder {
    color: #000000;
    font-size: 14px;
    opacity: 0.9;
}