/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather: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, #1e3c72, #2a5298);
}

.container {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 25px 35px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    min-width: 420px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.container i {
    font-size: 100px;
    margin-bottom: 10px;
    color: white;
}

h1 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

label {
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    margin: 10px 0;
    display: block;
    color: white;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    font-size: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.buttons {
    display: flex;
    gap: 10px;
}

.buttons button {
    width: 100%;
    color: white;
    border: 2px solid #ff6f61;
    border-radius: 20px;
    padding: 10px;
    font-weight: 600;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.buttons button:hover {
    background: #ff6f61;
    color: #fff;
    box-shadow: 0px 4px 15px rgba(255, 111, 97, 0.5);
}

/* Copy Button */
#copy {
    position: absolute;
    right: 10px;
    top: 10px;
    height: 35px;
    width: 35px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    color: white;
    background: linear-gradient(180deg, #0d47a1, #8e24aa);
    box-shadow: 0 0 2rem #0ef;
    transition: 0.5s ease-in-out;
}

#copy:hover {
    transform: scale(1.1);
    box-shadow: 0 0 3rem #0ef;
}

/* Responsive */
@media (max-width: 500px) {
    .container {
        min-width: 300px;
        padding: 20px;
    }
}
