* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-image: url("https://th.bing.com/th/id/R.23bcd8905c5440b4817a580885c4ec3f?rik=Gk4pOrgGmSx2Qg&riu=http%3a%2f%2fwallup.net%2fwp-content%2fuploads%2f2016%2f01%2f214916-animals-wildlife-nature-jaguars.jpg&ehk=%2bd4KdX1OytOgqC5Xsvld79IQgtVDYVBu8W8EJwBXPwU%3d&risl=&pid=ImgRaw&r=0.jpg"); 
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.logo {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    color: white;
    font-size: 2em;
}

.logo img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}
.logo h1 {
    font-size: 1.2em; /* Adjust the font size */
    margin: 0;
}

.container {
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.signup-form {
    background-color: #abc2ab;
    padding: 30px;
    border-radius: 10px;
    color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    opacity: .9;
}

.title-box {
    background-color: #ffffff;
    color: #000000;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

/* Style for the Sign Up text */
.title-box h2 {
    font-size: 1.8em;
    margin: 0;
}
/* Style for the required fields note */
.required-text {
    font-size: 0.6em;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: left; /* Aligns text to the left */
}


.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"] {
    width: 48%;
    padding: 10px;
    border: none;
    border-radius: 5px;
}
.form-row input[type="email"] {
    width: 100%;
}


.form-row.remember-me {
    justify-content: flex-start;
    align-items: center;
}

.remember-me label {
    font-size: 0.9em;
    margin-left: 5px;
}

.form-row.buttons {
    display: flex;
    justify-content: space-between;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.5em;
}
/* New hover effect for the buttons */
.login-button:hover, .submit-button:hover {
    background-color: #4CAF50;
    color: white;
}

.login-button {
    background-color: #ffffff;
    color: #000000;
}

.submit-button {
    background-color: #ffffff;
    color: #000000;
}
/* Styles for success message */
.success-message {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4CAF50; /* Green background */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    text-align: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s;
}

/* Show class to make the message visible and animate upwards */
.success-message.show {
    display: block;
    opacity: 1;
    bottom: 50px;
}

