
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    background: linear-gradient(135deg, #7aa6ff, #9ad5b0, #ffd27a);
}

/* Main Wrapper */
.glass-wrapper {
    width: 1000px;
    padding: 30px;
    border-radius: 20px;

    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);

    position: relative;
}

.toggle-password {
    cursor: pointer;
    color: #666;
    transition: 0.3s;
}

.toggle-password:hover {
    color: #333;
    transform: scale(1.1);
}

.toggle-password i {
    font-size: 16px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.logo .icon {
    width: 35px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 10px;
    margin-right: 10px;
}

/* Content Layout */
.content {
    display: flex;
}

/* Left Panel */
.left-panel {
    flex: 1;
    border-radius: 20px;
    padding: 40px;

    background: linear-gradient(135deg, #5f9cff, #7bd3c8, #c9ffbf);
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-panel h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.left-panel p {
    font-size: 14px;
    line-height: 1.6;
}

/* Right Panel */
.right-panel {
    flex: 1;
    padding: 40px;
    border-radius: 20px;

    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);

    margin-left: -50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.right-panel h2 {
    font-size: 28px;
}

.sub {
    font-size: 14px;
    margin-bottom: 20px;
    color: #555;
}

/* Input */
.input-box {
    position: relative;
    margin-bottom: 15px;
}

.input-box input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border-radius: 25px;
    border: none;
    outline: none;

    background: #e9eef3;
}

.input-box .icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Options */
.options {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 15px;
}

.options a {
    text-decoration: none;
    color: #333;
}

/* Button */
button {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    border: none;

    background: linear-gradient(45deg, #6a5cff, #7bd3c8);
    color: white;
    font-weight: bold;
    cursor: pointer;

    transition: 0.3s;
}

button:hover {
    opacity: 0.9;
}

/* Signup */
.signup {
    margin-top: 15px;
    font-size: 13px;
    text-align: center;
}

.signup a {
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.badge {
    display: inline-block;
    background: linear-gradient(45deg, #6a5cff, #00c6ff);
    color: white;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

button {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    border: none;

    background: linear-gradient(45deg, #6a5cff, #00c6ff);
    color: white;
    font-weight: bold;
    cursor: pointer;

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

button:hover {
    transform: translateY(-2px);
}

.error-box {
    margin-top: 20px;
    padding: 15px 18px;
    border-radius: 12px;
    background: rgba(255, 0, 0, 0.08);
    border-left: 4px solid #ff4d4d;
    backdrop-filter: blur(10px);
    color: #fff;
    animation: fadeIn 0.4s ease-in-out;
}

.error-header {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ff4d4d;
}

.error-header i {
    margin-right: 8px;
    font-size: 18px;
}

.error-box ul {
    padding-left: 18px;
    margin: 0;
}

.error-box ul li {
    font-size: 14px;
    margin-bottom: 4px;
}

.error-box p {
    font-size: 14px;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.input-error {
    color: #ff4d4d;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}
