body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #6DD5ED, #2193B0); /* Gradient background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}
.signup-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.678);
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-sizing: border-box;
    transform: translateY(20px); 
    animation:0.8s ease-out 0s 1 fadeInSlideUp;
}
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
h2 {
    margin-bottom: 30px;
    color: #444;
    font-weight: 600;
}
.input-group {
    margin-bottom: 25px;
    text-align: left;
    position: relative;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #555555b7;
    font-size: 14px;
    transition: all 0.3s ease;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cccccc7e;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}
.input-group input:focus {
    border-color: #2193b0a4;
    box-shadow: 0 0 8px rgba(33, 147, 176, 0.3);
    outline: none;
}
.signup-button {
    background-color: #2193B0;
    color: white;
    padding: 14px 25px;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    width: 100%;
    margin-top: 15px;
}
.signup-button:hover {
    background-color: #1a7b933d; /
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.signup-button:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.login-link {
    margin-top: 25px;
    font-size: 14px;
    color: #666;}

.login-link a {
    color: #2193B0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-link a:hover {
    color: #1a7b93;
    text-decoration: underline;
}
@media (max-width: 600px) {
    .signup-container {
        margin: 20px;
        padding: 30px 25px;
    }

    h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .signup-button {
        font-size: 16px;
        padding: 12px 20px;
    }
}


