* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #e8ec1f;
    background: linear-gradient(to right, #040301, #d0d002);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}
/* Logo Container */
.logo-signup-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    margin-bottom: 1.5rem;
    width: 100%; /* Ensures the container takes full width */
}

/* Logo Image */
.logo-signup {
    max-width: 100%; /* Ensures the logo doesn't overflow its container */
    height: auto; /* Maintains aspect ratio */
    max-height: 80px;;
}

/* Media Queries for Mobile Devices */
@media (max-width: 480px) {
    .logo-signup {
        max-height: 60px; /* Smaller logo for mobile devices */
    }
}

.container {
    background: linear-gradient(to right, #040301, #d0d002);
    width: 100%;
    max-width: 450px;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

form {
    margin: 0 1rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    padding: 1.3rem;
    margin-bottom: 0.4rem;
}

.input-group {
    padding: 1% 0;
    position: relative;
}

.input-group i {
    position: absolute;
    color: black;
    top: 50%;
    transform: translateY(-50%);
    left: 0.5rem;
}

input {
    color: inherit;
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #757575;
    padding-left: 2rem;
    font-size: 15px;
    padding-bottom: 0.5rem;
}

input:focus {
    outline: none;
    border-bottom: 2px solid hsl(327, 90%, 28%);
}

input::placeholder {
    color: transparent;
}

label {
    color: #757575;
    position: absolute;
    left: 2rem;
    top: 0;
    transition: 0.3s ease all;
    pointer-events: none;
}

input:focus ~ label,
input:not(:placeholder-shown) ~ label {
    top: -1.5rem;
    font-size: 12px;
    color: hsl(66, 86%, 43%);
}

.recover {
    text-align: right;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.recover a {
    text-decoration: none;
    color: rgb(231, 24, 24);
}

.recover a:hover {
    color: blue;
    text-decoration: underline;
}

button {
    font-size: 1.1rem;
    padding: 10px 0;
    border-radius: 5px;
    outline: none;
    border: none;
    width: 100%;
    background: rgb(233, 250, 1);
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #fb0404;
}

.or {
    font-size: 1rem;
    margin-top: 1rem;
    text-align: center;
}

.icons {
    text-align: center;
    margin: 1rem 0;
}

.icons i {
    color: rgb(225, 236, 16);
    padding: 0.8rem;
    border-radius: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    border: 2px solid #dfe9f5;
    margin: 0 10px;
    transition: 0.3s;
}

.icons i:hover {
    background: #07001f;
    color: white;
    border-color: rgb(235, 30, 30);
}

.links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

#signUpButton,
#signInButton {
    color: rgb(255, 0, 0);
    border: none;
    background-color: transparent;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}

#signUpButton:hover,
#signInButton:hover {
    text-decoration: underline;
    color: yellow;
}

.messageDiv {
    background-color: hsl(347, 90%, 28%);
    color: white;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 0.9rem;
    opacity: 0;
    animation: fadeOut 7s forwards;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}

/* Media Queries for Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .form-title {
        font-size: 1.3rem;
    }

    input {
        font-size: 14px;
    }

    button {
        font-size: 1rem;
    }

    .icons i {
        font-size: 1.2rem;
        padding: 0.6rem;
    }

    .links {
        flex-direction: column;
        gap: 0.5rem;
    }
}
.movica-copyright{
    text-align: center;
  color: black;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.contact-issue{
    color: red;
}

