/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* BODY WITH DYNAMIC BACKGROUND */
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    background: linear-gradient(-45deg, #ff6ec4, #7873f5, #42e695, #ff9a9e);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
}

/* BACKGROUND ANIMATION */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* MAIN CONTAINER (GLASS LOOK) */
.container {
    width: 400px;
    padding: 25px;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);

    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);

    text-align: center;

    transition: 0.4s;
}

/* FLOAT EFFECT */
.container:hover {
    transform: translateY(-8px) scale(1.02);
}

/* TITLE */
h1 {
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255,255,255,0.8);
}

/* INPUT GROUP */
.credentials input {
    width: 100%;
    margin-bottom: 10px;
}

/* INPUTS + TEXTAREA + SELECT */
input, textarea, select {
    width: 100%;
    padding: 10px;
    margin-top: 8px;

    border: none;
    border-radius: 12px;

    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);

    color: black;
    outline: none;

    transition: 0.3s;
}

/* FOCUS EFFECT */
input:focus, textarea:focus, select:focus {
    background: rgba(255,255,255,0.5);
    transform: scale(1.03);
}

/* TEXTAREA */
textarea {
    height: 90px;
    resize: none;
}

/* BUTTON */
button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;

    border: none;
    border-radius: 12px;

    background: linear-gradient(45deg, #ff6ec4, #7873f5);
    color: white;

    font-weight: bold;
    cursor: pointer;

    transition: 0.3s;
}

/* BUTTON HOVER */
button:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #42e695, #ff9a9e);
}

/* OUTPUT BOX */
#outputText {
    margin-top: 15px;
    padding: 12px;

    background: rgba(255,255,255,0.2);
    border-radius: 12px;

    color: white;
    min-height: 50px;

    backdrop-filter: blur(10px);

    transition: 0.3s;
}

/* OUTPUT HOVER GLOW */
#outputText:hover {
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
}