body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d0e7f9;
    overflow: hidden;
    font-family: 'Quicksand', sans-serif;
}

img {
    width: 35px;
    height: 35px;
    display: none;
}

/* container styles */

.container {
    width: 40vh;
    height: 25vh;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.container:hover {
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.4);
}

/* input styles */

input {
    width: 200px;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #d0e7f9;
    font-size: 1rem;
    backdrop-filter: blur(5px);
    box-shadow: inset 0 0 5px rgba(0, 255, 255, 0.3);
    outline: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    margin-right: 10px;
}

input::placeholder {
    color: rgba(208, 231, 249, 0.5);
    font-size: 1.2rem;
}

input:focus {
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

/* button styles */

button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 12px;
    background: rgba(0, 255, 255, 0.1);
    color: #d0e7f9;
    font-size: 1.2rem;
    cursor: pointer;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

button:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

button:active {
    transform: scale(0.97);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
}

.output {
    display: flex;
    flex-direction: column;
}

.output img {
    margin-top: 15px;
    margin-right: 15px;
}

.output div {
    display: flex;
    font-size: 1.4rem;
}

/* flex boxes */ 

.twoParts {
    display: flex;
}

.imgLogo {
    margin-left: 10vh;
    margin-top: 5vh;
    width: 100px;
    height: 100px;
}