* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Ubuntu";
}

body {
    display: flex;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.left-section {
    flex: 2;
    position: relative;
    overflow: hidden;
}

.right-container {
    flex: 1.5;
    position: relative;
    height: 100%;
}

.right-section {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 80%;
    background-color: #e5e9f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    border-radius: 100px 0px 0px 100px;
    z-index: 2;
}

.right-section-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 40%;
    background: #d1d8e3;
    border-radius: 0px 0px 0px 100px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.control-room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.nav-tabs {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    padding: 20px;
    width: 100%;
    z-index: 2;
}

.tab {
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    position: relative;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #e63946;
}

.voxter-logo {
    position: absolute;
    bottom: 60px;
    left: 20px;
    color: white;
    display: flex;
    align-items: center;
    font-size: 12px;
}

.voxter-logo img {
    height: 30px;
    margin-left: 10px;
}

.weather-info {
    position: absolute;
    bottom: 60px;
    left: 220px;
    color: white;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.weather-icon {
    width: 30px;
    height: 30px;
    background-color: orange;
    border-radius: 50%;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.login-container {
    width: 100%;
    max-width: 500px;
    padding: 30px;
}

.logo {
    text-align: center;
    margin-bottom: 40px;
}

.logo img {
    max-height: 100px;
    max-width: 100%;
}

.input-group {
    margin-bottom: 20px;
    position: relative;
}

.input-group input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #999;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-button {
    width: 100%;
    padding: 15px;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 20px;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    margin-right: 5px;
}

.forgot-password {
    color: #4a7bff;
    text-decoration: none;
}

.app-download {
    text-align: center;
    margin-top: 150px;
}

.app-download h3 {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.store-button {
    padding: 8px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.store-button img {
    height: 50px;
    margin-right: 5px;
}

.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
}

.taskbar-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.taskbar-icon {
    width: 24px;
    height: 24px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.taskbar-right {
    display: flex;
    gap: 15px;
    color: white;
    font-size: 12px;
    align-items: center;
}

.windows-icon {
    color: #00a8e8;
    font-size: 20px;
    margin-right: 5px;
}

.time-info {
    text-align: right;
    color: white;
}

@media (max-width: 992px) {
    body {
        flex-direction: column;
    }

    .left-section {
        flex: 1;
        height: 20vh;
    }

    .right-container {
        flex: 2;
        height: 80vh;
    }

    .right-section {
        position: relative;
        border-radius: 50px 50px 0 0;
        width: 100%;
        height: 100%;
    }

    .right-section-bottom {
        position: relative;
        border-radius: 0 0 0 0;
        width: 100%;
        height: 100%;
    }

    .right-section {
        height: 70%;
    }

    .right-section-bottom {
        height: 30%;
    }

    .voxter-logo {
        bottom: auto;
        top: 60px;
        left: 20px;
    }

    .weather-info {
        bottom: auto;
        top: 60px;
        left: auto;
        right: 20px;
    }

    .app-download {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .left-section {
        height: 15vh;
    }

    .right-container {
        height: 85vh;
    }

    .logo {
        margin-bottom: 10px;
    }

    .nav-tabs {
        padding: 10px;
    }

    .tab {
        padding: 8px 12px;
        font-size: 14px;
    }

    .login-container {
        padding: 20px 15px;
    }

    .voxter-logo {
        top: 50px;
    }

    .weather-info {
        display: none;
    }

    .store-buttons {
        #flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .right-section {
        border-radius: 30px 30px 0 0;
        padding: 20px 10px;
    }

    .right-section-bottom {
        border-radius: 0 0 0 0;
    }
}

@media (max-width: 576px) {
    body {
        display: inline;
        overflow-y: auto;
    }

    .left-section {
        height: 10vh;
    }

    .right-container {
        height: 90vh;
    }

    .nav-tabs {
        padding: 5px;
    }

    .tab {
        padding: 5px 8px;
        font-size: 12px;
    }

    .voxter-logo {
        top: 20px;
        font-size: 10px;
    }

    .voxter-logo img {
        height: 20px;
    }

    .login-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .login-container {
        position: relative;
        padding: 15px 15px;
    }

    .logo {
        margin-bottom: 15px;
    }

    .logo img {
        max-height: 50px;
    }

    .right-section {
        height: 70%;
        border-radius: 20px 20px 0 0;
        padding: 10px 10px;
    }

    .right-section-bottom {
        height: 30%;
        border-radius: 0 0 0 0;
        justify-content: flex-start;
    }

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

    .app-download h3 {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .store-button img {
        height: 40px;
    }
}

/* Orientação paisagem em dispositivos pequenos */
@media (max-height: 500px) and (orientation: landscape) {
    body {
        flex-direction: row;
        overflow-y: auto;
    }

    .left-section {
        height: 100vh;
        flex: 1;
    }

    .right-container {
        height: 100vh;
        flex: 2;
    }

    .right-section,
    .right-section-bottom {
        border-radius: 30px 0 0 30px;
    }

    .right-section {
        height: 75%;
        padding: 10px;
        overflow-y: auto;
    }

    .right-section-bottom {
        height: 25%;
    }

    .login-container {
        padding: 10px;
    }

    .logo {
        margin-bottom: 15px;
    }

    .input-group {
        margin-bottom: 10px;
    }

    .input-group input {
        padding: 10px 10px 10px 40px;
    }

    .login-button {
        margin-bottom: 10px;
        padding: 10px;
    }

    .app-download {
        margin-top: 5px;
    }
}
