body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    /* linear-gradient(135deg, #2b1055, #7597de); Original purple */
    background: linear-gradient(135deg, #0551b5, #00604b);
    /* Blue #0551b5 to Teal/Green */
    /* Alternative brighter: background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); */
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box {
    position: relative;
    width: 400px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.box .logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.box .logo-container img {
    width: 150px;
    /* Adjust size as needed */
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.box h2 {
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.box .input-box {
    position: relative;
}

.box .input-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
}

/* Fix for Chrome/Edge Autofill White Background */
.box .input-box input:-webkit-autofill,
.box .input-box input:-webkit-autofill:hover,
.box .input-box input:-webkit-autofill:focus,
.box .input-box input:-webkit-autofill:active {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
}

.box .input-box label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    pointer-events: none;
    transition: .5s;
}

.box .input-box input:focus~label,
.box .input-box input:valid~label {
    top: -20px;
    left: 0;
    color: #fff;
    /* Could be accent color like #03a9f4 */
    font-size: 12px;
}

.box .input-box label i {
    margin-right: 5px;
}

.box .input-box .toggle-password {
    position: absolute;
    top: 10px;
    right: 0;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 14px;
    color: #fff;
}

.options label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.options input[type="checkbox"] {
    margin-right: 5px;
    accent-color: #fff;
}

.options a {
    color: #fff;
    /* Could be accent color */
    text-decoration: none;
    font-style: italic;
    opacity: 0.8;
}

.options a:hover {
    text-decoration: underline;
    opacity: 1;
}

.box button {
    display: block;
    width: 100%;
    padding: 10px 20px;
    font-weight: bold;
    color: #fff;
    border: none;
    outline: none;
    background: linear-gradient(90deg, #0551b5, #00604b);
    border-radius: 30px;
    cursor: pointer;
    transition: 0.5s;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.box button:hover {
    background: linear-gradient(90deg, #1bcedf, #5b247a);
    box-shadow: 0 0 5px #1bcedf, 0 0 25px #1bcedf, 0 0 50px #1bcedf;
}

/* Background circles for extra effect (optional, based on common glassmorphism examples) */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff357a, #fff172);
    z-index: -1;
}

.bg-circle:nth-child(1) {
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    filter: blur(40px);
}