/* Login Page */

@import url('https://fonts.googleapis.com/css?family=Numans');

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    background-color: #f0f2f5;
    flex-direction: column;
    min-height: 100vh;
}

#root {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color:#e0e0e0; */
    /* background-image: url('https://getwallpapers.com/wallpaper/full/3/e/c/168592.jpg'); */
    background: url('../img/puppypile_bg.jpeg');
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}

/* Optional: Add a semi-transparent overlay inside #root for better readability */
#root::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust opacity */
    z-index: -1;
}

/* Ensuring login container is on top of overlay */
.login-container {
    position: relative;
    padding: 50px;
    background: rgba(0, 0, 0, 0.6); /* Optional: Semi-transparent background */
    border-radius: 10px;
    text-align: center;
}

#email, #password, #sign-in-button, #userFirstName, #firstName, #userLastName, #lastName {
    width: 100%;
}

#userFirstName, #userLastName, #fpUserEmail, #newPassword, #confirmPassword {
    width: 75%;
}

input, select, button {
    display: block;
    padding: 10px;
    margin-top:5px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.choices__inner {
    width: 90% !important;
}

button {
    background-color: #dd514e;
    color: #fff;
    cursor: pointer;
}

button:hover {
    background-color: #fa4b4b;
}

.recycle-button {
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    border: none;
    padding: 0px !important;
}

.recycle-button:hover {
    background-color: #4bfaa2;
}

.alert {
    color: #fa2b2b;
    margin-bottom: 10px;
}

.homePageLinks {
    color: #FFFFFF !important;
}

.remember-me {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 10px;
}
  
.remember-me input {
    margin: 0;
}

.error {
    color: #fa2c2c;
    font-size: 16px;
}

.password-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.password-container input {
    width: 100%;
    padding-right: 30px;
     /* Space for the icon */
}

.toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    user-select: none;
}

.signup-toggle-password {
    position: absolute;
    top: 377px;
    right: 67px;
    cursor: pointer;
    font-size: 18px;
    user-select: none;
}

.forgot-toggle-password {
    position: absolute;
    top: 305px;
    right: 25px;
    cursor: pointer;
    font-size: 18px;
    user-select: none;
}

.confirm-toggle-password {
    position: absolute;
    top: 363px;
    right: 25px;
    cursor: pointer;
    font-size: 18px;
    user-select: none;
}

/* End Login Page */

/* Fixed Footer */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
}

.powered {
    font-size: 12px;
    color: #bababa;
}

.powerImage {
    max-width: 100%;
    max-height: 25px;
}

.footer-text {
    font-size: 14px;
    color: #bababa;
}

.footer-statement {
    font-size: 13px;
    color: #bababa;
}

/* End Footer */