html, body {
    height: 100%;
    margin: 0px;    
}
.translater-wrapper {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    height: 100%;
    background: linear-gradient(to bottom right,#357ae8, #012661);
    background-repeat: no-repeat;
    position: relative;
    
}

.container {
    background-color: rgb(236, 248, 255);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 70%;
    max-width: 900px;
    z-index: 2;
    border: 10px solid #357ae8;
    
}


h1 {
    text-align: center;
}

.translation-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    
}

textarea {
    width: 45%;
    height: 150px;
    font-size: 16px;
    padding: 10px;
    border-radius: 20px;
    border: 3px solid #ecf3ff;
    transition: 0.1s;
}

textarea:hover{    
    transition: 0.1s;
    border: 3px solid #357ae8;
}

select {
    font-size: 16px;
    padding: 5px;
    margin-right: 10px;
}

select:hover{    
    transition: 0.1s;
    border: 2px solid #357ae8;
    border-radius: 2px;
}

.form-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

button {
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: rgb(53, 122, 232);
}

.error {
    color: red;
    text-align: center;
}
h1{
    color: rgb(53, 122, 232);
}
.image-container{
    display: flex;
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
}
img{
    width: 1000px;
    -webkit-filter: blur(8px);
}