/* logSt.css */

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Body styling */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    /* Gradient background */
    background: linear-gradient(135deg, #74ebd5, #ACB6E5, #FFB347, #FF7E5F);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Box container */
#box {
    margin-top: 5%;
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    width: 350px;
    text-align: center;
}

/* Form elements */
#signUp-form label {
    display: block;
    text-align: left;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

#signUp-form input {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 20px;
    border: 1.5px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

#signUpform input:focus {
    border-color: #74ebd5;
    outline: none;
}

/* Button styling */
#signUp-form button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #74ebd5;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

#signUp-form button:hover {
    background: #67d6ca;
}

/* Sign up link */
#box a {
    display: inline-block;
    margin-top: 15px;
    color: #74ebd5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

#box a:hover {
    color: #67d6ca;
    text-decoration: underline;
}

#box h1 {
    margin-bottom: 25px;
    font-size: 28px;
    color: #333;
    font-weight: 700;
    text-align: center;
}