* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);*/
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    display: flex;
    max-width: 1100px;
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.left-panel {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-panel {
    flex: 1;
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.illustration {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
}

.globe {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, #5a8dee, #2d5ac4);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.icon-orbit {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    animation: float 3s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    right: 5%;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    animation-delay: 0s;
}

.icon-2 {
    top: 30%;
    right: -15%;
    background: linear-gradient(135deg, #ff6b9d, #ff4757);
    animation-delay: 0.5s;
}

.icon-3 {
    bottom: 25%;
    right: 0%;
    background: linear-gradient(135deg, #ffd93d, #ff9a00);
    animation-delay: 1s;
}

.icon-4 {
    bottom: 5%;
    right: 20%;
    background: linear-gradient(135deg, #c471f5, #9f44d3);
    animation-delay: 1.5s;
}

.icon-5 {
    bottom: 15%;
    left: 10%;
    background: linear-gradient(135deg, #00f2c3, #00d9a5);
    animation-delay: 2s;
}

.icon-6 {
    top: 40%;
    left: -15%;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    animation-delay: 2.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

h1 {
    font-size: 28px;
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 600;
}

.subtitle {
    color: #718096;
    margin-bottom: 40px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #2d3748;
    font-size: 14px;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    outline: none;
}

    input:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

.forgot-password {
    text-align: right;
    margin-bottom: 25px;
}

    .forgot-password a {
        color: #667eea;
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
    }

        .forgot-password a:hover {
            text-decoration: underline;
        }

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

    .remember-me input[type="checkbox"] {
        width: auto;
        margin-right: 8px;
    }

    .remember-me label {
        margin: 0;
        font-size: 13px;
        font-weight: 400;
        color: #4a5568;
    }

button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

    button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    }

    button:active {
        transform: translateY(0);
    }

.signup-link {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #718096;
}

    .signup-link a {
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
    }

        .signup-link a:hover {
            text-decoration: underline;
        }

/* Extra Large Screens - 1920px and above */
@media (min-width: 1921px) {
    .container {
        max-width: 1400px;
    }

    .left-panel {
        padding: 80px 70px;
    }

    h1 {
        font-size: 32px;
    }

    .illustration {
        max-width: 500px;
    }

    .icon-orbit {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}

/* Large Desktops - 1440px to 1920px */
@media (min-width: 1441px) and (max-width: 1920px) {
    .container {
        max-width: 1200px;
    }

    .left-panel {
        padding: 70px 60px;
    }

    h1 {
        font-size: 30px;
    }
}

/* Standard Desktops - 1200px to 1440px */
@media (min-width: 1201px) and (max-width: 1440px) {
    .container {
        max-width: 1100px;
    }

    .left-panel {
        padding: 60px 50px;
    }

    h1 {
        font-size: 28px;
    }
}

/* Small Desktops and Laptops - 992px to 1200px */
@media (min-width: 992px) and (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .left-panel {
        padding: 50px 40px;
    }

    h1 {
        font-size: 26px;
    }

    .illustration {
        max-width: 350px;
    }

    .icon-orbit {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}

/* Tablets Landscape - 768px to 991px */
@media (min-width: 768px) and (max-width: 991px) {

    .icon-2 {
        top: 5%;
        right: -35%;
    }

    .icon-3 {
        bottom: 25%;
        right: 5%;
    }

    .icon-4 {
        bottom: -4%;
        right: -25%;
    }

    .icon-5 {
        bottom: -6%;
        left: -25%;
    }

    .icon-6 {
        top: 10%;
        left: -30%;
    }
    
    .container {
        flex-direction: column-reverse;
        max-width: 720px;
    }

    .left-panel {
        padding: 40px 35px;
    }

    .right-panel {
        padding: 50px 35px;
    }

    h1 {
        font-size: 26px;
    }

    .subtitle {
        font-size: 13px;
    }

    .illustration {
        max-width: 320px;
    }

    .icon-orbit {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    input {
        padding: 11px 14px;
        font-size: 13px;
    }

    button {
        padding: 13px;
        font-size: 14px;
    }
}

/* Tablets Portrait - 576px to 767px */
@media (min-width: 576px) and (max-width: 767px) {

    .icon-2 {
        top: 5%;
        right: -35%;
    }

    .icon-3 {
        bottom: 25%;
        right: 5%;
    }

    .icon-4 {
        bottom: -4%;
        right: -25%;
    }

    .icon-5 {
        bottom: -6%;
        left: -25%;
    }

    .icon-6 {
        top: 10%;
        left: -30%;
    }
    
    .container {
        flex-direction: column-reverse;
    }

    .left-panel {
        padding: 35px 30px;
    }

    .right-panel {
        padding: 45px 30px;
    }

    h1 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .subtitle {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .illustration {
        max-width: 280px;
    }

    .icon-orbit {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    input {
        padding: 10px 14px;
        font-size: 13px;
    }

    button {
        padding: 12px;
        font-size: 14px;
    }

    .forgot-password,
    .remember-me {
        margin-bottom: 20px;
    }
}

/* Mobile Landscape - 480px to 575px */
@media (min-width: 480px) and (max-width: 575px) {
    body {
        padding: 15px;
      
    }


    .icon-2 {
        top: 5%;
        right: -35%;
       
    }

    .icon-3 {
        bottom: 25%;
        right: 5%;
       
    }

    .icon-4 {
        bottom: -4%;
        right: -25%;
       
    }

    .icon-5 {
        bottom: -6%;
        left: -25%;
       
    }

    .icon-6 {
        top: 10%;
        left: -30%;
       
    }

    .container {
        flex-direction: column-reverse;
        border-radius: 15px;
    }

    .left-panel {
        padding: 30px 25px;
    }

    .right-panel {
        padding: 40px 25px;
    }

    h1 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .subtitle {
        font-size: 12px;
        margin-bottom: 25px;
    }

    .illustration {
        max-width: 240px;
    }

    .icon-orbit {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    input {
        padding: 10px 12px;
        font-size: 13px;
    }

    button {
        padding: 12px;
        font-size: 13px;
    }

    .forgot-password {
        margin-bottom: 18px;
    }

        .forgot-password a,
        .remember-me label {
            font-size: 12px;
        }

    .signup-link {
        margin-top: 20px;
        font-size: 13px;
    }
}

/* Mobile Portrait - 320px to 479px */
@media (max-width: 479px) {
    body {
        padding: 10px;
    }

    .icon-2 {
        top: 5%;
        right: -18%;
    }

    .icon-3 {
        bottom: 25%;
        right: 5%;
    }

    .icon-4 {
        bottom: -4%;
        right: -18%;
    }

    .icon-5 {
        bottom: -6%;
        left: -18%;
    }

    .icon-6 {
        top: 10%;
        left: -18%;
    }
    .container {
        flex-direction: column-reverse;
        border-radius: 12px;
    }

    .left-panel {
        padding: 25px 20px;
    }

    .right-panel {
        padding: 35px 20px;
    }

    h1 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .illustration {
        max-width: 220px;
    }

    .icon-orbit {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    label {
        font-size: 12px;
        margin-bottom: 5px;
    }

    input {
        padding: 9px 12px;
        font-size: 13px;
        border-radius: 6px;
    }

    button {
        padding: 11px;
        font-size: 13px;
        border-radius: 6px;
    }

    .forgot-password {
        margin-bottom: 16px;
    }

        .forgot-password a {
            font-size: 11px;
        }

    .remember-me {
        margin-bottom: 18px;
    }

        .remember-me label {
            font-size: 11px;
        }

    .signup-link {
        margin-top: 18px;
        font-size: 12px;
    }
}

/* Extra Small Devices - Below 320px */
@media (max-width: 319px) {
    body {
        padding: 8px;
    }

    .container {
        border-radius: 10px;
    }

    .left-panel {
        padding: 20px 15px;
    }

    .right-panel {
        padding: 30px 15px;
    }

    h1 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .subtitle {
        font-size: 11px;
        margin-bottom: 18px;
    }

    .illustration {
        max-width: 200px;
    }

    .icon-orbit {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .form-group {
        margin-bottom: 14px;
    }

    label {
        font-size: 11px;
        margin-bottom: 4px;
    }

    input {
        padding: 8px 10px;
        font-size: 12px;
        border-radius: 5px;
    }

    button {
        padding: 10px;
        font-size: 12px;
        border-radius: 5px;
    }

    .forgot-password,
    .remember-me {
        margin-bottom: 14px;
    }

        .forgot-password a,
        .remember-me label {
            font-size: 10px;
        }

    .signup-link {
        margin-top: 16px;
        font-size: 11px;
    }
}