@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
* {
    color: white;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rubik";
}
html, body {
    width: 100%;
    height: 100%;
    overflow: absolute;
}
body::before{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-image: url("images/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(5px);
    z-index: -1;   
}

/* Centrare corectă a conținutului */
body {
    display: flex;
    justify-content: center;
    align-items: center;
}
.in{
    font-size: 25px;
    background-color: rgba(228, 196, 255, 0.433);
    padding: 35px;
    border: 2px solid white;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    min-width: 250px;
    transition: 0.3s ease;
}
.in:hover{
    transform: scale(1.1); /* mărește cu 10% */
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

input {
    font-size: 15px;
    border: none;
    border-bottom: 2px solid white;
    background-color: transparent;
    padding: 5px;
    margin: 10px 0;
  }::placeholder{
    color: white;
  }
textarea:focus, input:focus{
    outline: none;
}

button {
    font-size: 20px;
    background-color: rgb(255, 174, 250);    padding: 5px 10px;
    border-radius: 10px;
    border: 1.5px solid rgb(255, 255, 255);
    transition: 0.3s ease;
}
button:hover{
    transform: scale(1.1);
}