* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(180deg, #e08a2e, #8f4512);
}

/* MAIN CONTAINER */
.screen {
    min-height: 100vh;
    max-width: 420px;
    margin: auto;
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* TOP BAR */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back {
    font-size: 22px;
    cursor: pointer;
}

.lang {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.lang img {
    width: 20px;
    border-radius: 2px;
}

/* LOGO */
.logo {
    text-align: center;
    margin-top: 10px;
}

.logo img {
    width: 90px;
    height: auto;
}

.logo p {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 8px;
}

/* FORM */
.login-form {
    margin-top: 20px;
}

.login-form input {
    width: 85%;
    padding: 14px;
    border-radius: 25px;
    border: none;
    margin: 0 auto 15px auto;
    display: block;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 14px;
}

.login-form input::placeholder {
    color: #f1f1f1;
}

.login-form button {
    width: 85%;
    padding: 14px;
    border-radius: 25px;
    border: none;
    margin: 0 auto;
    display: block;
    background: #ffffff;
    color: #000;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
}

/* LINKS */
.links {
    text-align: center;
    margin-top: 15px;
}

.links a {
    display: block;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    margin-top: 8px;
}

/* BOTTOM AREA */
.bottom-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.bottom {
    display: flex;
    gap: 20px;
}

.icon {
    width: 46px;
    height: 46px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* VERSION */
.version {
    font-size: 11px;
    opacity: 0.85;
}

/* SMALL PHONES */
@media (max-width: 360px) {
    .logo img {
        width: 75px;
    }

    .login-form input,
    .login-form button {
        width: 90%;
        padding: 12px;
        font-size: 13px;
    }

    .icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* TABLETS */
@media (min-width: 600px) {
    .screen {
        max-width: 500px;
        padding: 30px;
    }

    .logo img {
        width: 110px;
    }
}

/* DESKTOP */
@media (min-width: 900px) {
    body {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .screen {
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.35);
    }
}
