body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-medium);
    gap: var(--space-medium);
}

.form-box {
    width: var(--wid-forms);

    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-small);
    gap: var(--space-small);

    background: white;
    border-radius: 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .2);
}

.form-title {
    margin-bottom: var(--space-small);

    font-size: var(--fs-forms-title);
    text-align: center;
    text-shadow: 3px 5px 10px rgba(0, 0, 0, .2);

    background: linear-gradient(90deg, #00561B, #FCBD00);
    background-clip: text;
    color: transparent;
}

.form-profile-picture {
    margin-bottom: var(--space-small);

    width: var(--is-forms-profile-picture);
    border-radius: 100px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .2);
}

.form {
    width: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.form-input {
    width: 100%;
    padding: 4px;

    font-size: var(--fs-forms-input);
    color: #3B3B3B;

    border-style:solid;
    border-color:#00561B; 
    border-width: 3px 3px 3px 3px;
    border-radius: 4px;

    box-shadow: 3px 3px 10px rgba(0, 0, 0, .2);

    transition: .2s;
}
.form-input:hover {
    border-color:#FCBD00; 
    transition: .2s;
}

form div {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: var(--space-xsmall);
}

.form-submit {
    width: 100%;
    padding: var(--space-xsmall);

    font-size: var(--fs-forms-input);
    font-weight: bold;
    color: white;

    border-style:solid;
    border-color:#00561B; 
    border-width: 3px 3px 3px 3px;
    border-radius: 4px;

    background: #00561B;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .2);

    transition: .2s;
}
.form-submit:hover {
    transform: scale(105%);
    transition: .2s;
}

.form-submit-2 {
    width: 100%;
    padding: var(--space-xsmall);

    font-size: var(--fs-forms-input);
    font-weight: bold;
    color: white;

    border-style:solid;
    border-color: rgb(200, 1, 1); 
    border-width: 3px 3px 3px 3px;
    border-radius: 4px;

    background: rgb(200, 1, 1);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .2);
    transition: .2s;
}
.form-submit-2:hover {
    transform: scale(105%);
    transition: .2s;
}

p, label {
    text-align: center;
    font-size: var(--fs-forms-smaller);
    color: #3B3B3B;
    text-shadow: 3px 5px 10px rgba(0, 0, 0, .2);
}

p a {
    font-size: var(--fs-forms-smaller);
    text-decoration: none;
    color: #00561B;
    text-shadow: 3px 5px 10px rgba(0, 0, 0, .2);

    transition: .2s;
}
p a:hover {
    color:#FCBD00; 
    transition: .2s;
}

.form-error {
    text-align: center;
    font-size: var(--fs-forms-smaller);
    color: rgb(200, 1, 1);
} 

.return-button {
    margin-top: var(--space-small);
    width: 100%;

    padding: 4px;

    font-size: var(--fs-forms-input);
    font-weight: bold;
    color: white;

    border-style:solid;
    border-color: grey; 
    border-width: 3px 3px 3px 3px; 
    border-radius: 4px;
    
    background: grey;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .2);

    transition: .2s;
}
.return-button:hover {
    transform: scale(105%);
    transition: .2s;
}



.form-div-signup {
    display: flex;
    flex-direction: row;
    gap: 8px;
}
.form-div-signup input {
    width: var(--wid-forms-signup-input);
}



.signup-success {
    width: var(--wid-forms);
    display: flex;
    flex-direction: row;
    align-items: center;

    padding: var(--space-small);
    gap: var(--space-small);

    color: green;
    
    border-style: solid;
    border-color: green;
    border-width: 3px 3px 3px 3px;
    border-radius: 20px;

    background: lightgreen;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .2);
}
.signup-success p, .signup-success p b {
    font-size: var(--fs-forms-smaller);
    color: green;
}

.login-required {
    width: var(--wid-forms);
    display: flex;
    flex-direction: row;
    align-items: center;

    padding: var(--space-small);
    gap: var(--space-small);

    color: red;

    
    border-style: solid;
    border-color: red;
    border-width: 3px 3px 3px 3px;
    border-radius: 20px;

    background: rgb(254, 181, 181);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .2);
}
.login-required p, .login-required p b {
    font-size: var(--fs-forms-smaller);
    color: red;
}



















.form-title-delete {
    margin-bottom: var(--space-small);

    font-size: var(--fs-forms-title);
    text-align: center;
    text-shadow: 3px 5px 10px rgba(0, 0, 0, .2);

    background: linear-gradient(90deg, #3B3B3B, rgb(200, 1, 1));
    background-clip: text;
    color: transparent;
}

.p-delete {
    font-size: var(--fs-forms-smaller);
    text-align: center;
    color: #3B3B3B;

    text-shadow: 5px 5px 10px rgba(0, 0, 0, .2);
}

.p-delete b {
    font-size: var(--fs-forms-smaller);
    text-align: center;
    color: rgb(200, 1, 1);

    text-shadow: 5px 5px 10px rgba(0, 0, 0, .2);
}

.form-delete {
    width: 100%;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.return-button-delete {
    width: var(--wid-forms-delete-button);

    padding: var(--space-xsmall);

    font-size: var(--fs-forms-input);
    font-weight: bold;
    color: white;
    
    border-style: none;
    border-radius: 4px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .2);

    background: grey;
    transition: .2s;
}
.return-button-delete:hover {
    transform: scale(105%);
    transition: .2s;
}

.form-submit-delete {
    width: var(--wid-forms-delete-button);

    padding: var(--space-xsmall);

    font-size: var(--fs-forms-input);
    font-weight: bold;
    color: white;

    border-style: none;
    border-radius: 4px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .2);

    background: rgb(200, 1, 1);

    transition: .2s;
}
.form-submit-delete:hover {
    transform: scale(105%);
    transition: .2s;
}