* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #ceeaff, #c6e0ff, #f0f6ff);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 800px;
}

/* Form Box - Enhanced with glow border */
.form-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    padding: 45px 35px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15), 0 0 25px rgba(76,159,255,0.2);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease forwards;
}

.form-box:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.2), 0 0 30px rgba(76,159,255,0.4);
    transform: translateY(-5px);
}

/* Logo */
.logo {
    width: 180px;
    margin-bottom: 15px;
    animation: floatLogo 3s ease-in-out infinite;
}

/* Animations */
@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Titles */
.title-name {
    color: #004aad;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 5px;
}

.signin-title {
    font-size: 15px;
    margin-bottom: 25px;
    color: #333;
}

/* Input Fields */
.input-group {
    margin-bottom: 25px;
}

.input-wrapper {
    position: relative;
}

input {
    width: 100%;
    padding: 14px 45px 14px 15px;
    border: 1px solid #ccc;
    border-radius: 30px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

input:focus {
    border-color: #4C9FFF;
    box-shadow: 0 0 8px rgba(76,159,255,0.4);
    background: #f0f8ff;
}

label {
    position: absolute;
    left: 18px;
    top: 14px;
    font-size: 14px;
    color: #666;
    pointer-events: none;
    transition: all 0.3s ease;
}

input:focus + label,
input:not(:placeholder-shown) + label {
    top: -10px;
    left: 15px;
    font-size: 12px;
    background: #f0f6ff;
    padding: 0 5px;
    color: #4C9FFF;
}

/* Icons */
.icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

input:focus ~ .icon {
    color: #4C9FFF;
}

/* Button */
button {
    width: 100%;
    background: linear-gradient(135deg, #4C9FFF, #1c6ce0);
    border: none;
    padding: 14px;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75px;
    width: 50px;
    height: 100%;
    background: rgba(255,255,255,0.4);
    transform: skewX(-20deg);
    transition: left 0.5s;
}

button:hover::after {
    left: 125%;
}

button:hover {
    transform: scale(1.05);
}

/* Sign-up link */
.signup-text {
    margin-top: 15px;
    font-size: 14px;
    color: #333;
}

.signup-text a {
    color: #1c6ce0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.signup-text a:hover {
    color: #004aad;
}

/* Forgot Password Link */
.forgot-password-link {
    margin-top: 15px;
    text-align: center;
}

.forgot-password-link a {
    color: #1c6ce0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.forgot-password-link a:hover {
    color: #004aad;
    text-decoration: underline;
}