body { /*Image is too small for big monitors*/
    background-image: url("images/login-background.jpg");
    font-family: "Open Sans", sans-serif;
    background-repeat: no-repeat;
    background-attachment:fixed;
    background-position:center;
    background-clip: border-box;
    background-size: cover;
    padding: 0;
    margin: 0;

}

h1 {
    font-family: "Sour Gummy", sans-serif;
}

h2 {
    font-family: "Sour Gummy", sans-serif;
}
h3 {
    font-family: "Sour Gummy", sans-serif;
}

.main-form-container {
    height: 100vh;
    justify-content: center;
    align-items: center;
    display: flex;
    opacity: 0.95;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 2;
    background: linear-gradient(180deg, #ffb5b0 0%, rgb(255, 217, 156) 100%);
    padding: 10px;
    border-radius: 20px;

    box-shadow: #00000033 2px 2px 16px;
    /*margin: 70px 0 70px 0 ;*/

}

.register-button{
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-family: "Sour Gummy", sans-serif;
    font-size: 20px;
    background: -webkit-linear-gradient(90deg, rgb(255, 115, 194) 0%, rgb(255, 128, 46) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 3px 1px #0000009d);
}

form {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

.label-login{
    font-family: Open Sans, sans-serif;
    font-size: 16px;
    color: rgb(0, 0, 0);
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}

.Welcome h1 {
    font-size: 6rem;
    background: -webkit-linear-gradient(180deg, rgba(255,150,150,1) 0%, rgba(255,200,150,1) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 5px 1px #0000009d);
    margin: 20px;
    text-align: center;
    font-family: "Sour Gummy", sans-serif;
    font-weight: 550;
    user-select: none;

}

.login-button {
    border: solid 2px #ffffff;
    border-radius: 24px;
    padding: 10px;
    margin: 15px;
    color: #000000;
    text-shadow: 0px 1px #000000;
    filter: drop-shadow(0px 2px 1px #000000);
    background: linear-gradient(180deg, rgba(255,150,150,1) 0%, rgba(255,200,150,1) 100%);
    cursor: pointer;
    font-family: "Sour Gummy", sans-serif;
    font-size: 20px;
    width: 20vh;
}

.login-button:hover {
    background: radial-gradient(circle, rgba(255,200,150,1) 0%, rgba(255,150,150,1) 100%);
    filter:drop-shadow(0px 3px 1px #000000);

}

.input-login{
    border-radius: 24px;
    border: solid 2px #000000;
    padding-left:8px;
    font-family: "Open Sans", sans-serif;
}

.input-login-textarea{
    width: 80%;
}
.fa fa-paw {
    font-size: 20px; padding-right: 15px;
}

.login-field{
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}
.post-media-form-container {
    display:flex;
    flex-wrap:wrap;
    gap: 0px;
    justify-content: center ;
    padding:0;
    width:90%;
    max-height:150px;
    overflow-y:scroll;
    background-color:#ffffff99;
    border-radius:15px;
}
.post-media-form {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    filter: drop-shadow(0px 2px 2px #0000009d);
    cursor: pointer;
    transition: all 200ms;
    margin:10px;
}
.post-media-form:hover {
    transition: all 200ms;
    width: 90px;
    height: 90px;
    margin:0;

}

.post-media-form-selected {
    width: 60%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    filter: drop-shadow(0px 2px 2px #0000009d);
    transition: all 450ms;
}