html, 
body {
    display: grid;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: auto;
    overflow: hidden;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(#007bff, #ffffff);
}

.login-container.mobile {
    padding: 40% 0;
}

.login-container.mobile.landscape {
    padding: 5% 11%;
}

.login-container.mobile.portrait {
    padding: 40% 0;
}

.login-container.desktop {
    @media (min-aspect-ratio: 1/1) {
        padding: 11% 0;
    }

    @media (max-aspect-ratio: 1/1) {
        padding: 40% 0;
    }
}

.login-box {
    box-sizing: border-box;
    width: 300px;
    height: 100%;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-box h2 {
    font-weight: bold;
    margin-top: 0px;
}

.login-btn {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-btn {
    background: #00b7ff;
}

.login-btn:hover {
    background: #0095cf;
}

.sign-up-btn {
    display: block;
    text-align: center;
    width: 100%;
    padding: 10px 0;
    border-radius: 30px;
    color: #00b7ff;
    font-size: 16px;
    background: #f0f0f0;
    text-decoration: none;
    transition: background 0.3s ease;
    cursor: pointer;
    margin-top: 10px;
}

.sign-up-btn:hover {
    color: #ffffff;
    background: #0095cf;
}

.sign-up-btn:hover p {
    color: #ffffff;
}

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

.logo img {
    width: 90px !important;
    height: 90px !important;
    object-fit: contain;
}

.input-box {
    position: relative;
    margin-top: 10px;
    width: 100%;
}

.input-box i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    font-size: 18px;
}

.input-box input {
    width: 100%;
    padding: 10px 10px 10px 40px;
    background: #f0f0f0;
    border: none;
    outline: none;
    border-radius: 30px;
    font-size: 14px;
    box-sizing: border-box;
}

.options {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 15px;
    color: #777;
}

.options label {
    display: flex;
    margin-top: 0px;
    align-items: center;
}

.options a {
    text-decoration: none;
    color: #777;
}

.input-box {
    position: relative;
    margin-top: 10px;
    width: 100%;
}

.input-box input {
    width: 100%;
    padding: 10px 10px 10px 40px;
    background: #f0f0f0;
    border: none;
    outline: none;
    border-radius: 30px;
    font-size: 14px;
    box-sizing: border-box;
}

.input-box input[type="text"]#password {
    padding-right: 50px;
}

.generate-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #00b7ff;
    border: none;
    border-radius: 15px;
    padding: 5px 10px;
    color: white;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.3s ease;
}

.generate-btn:hover {
    background: #0095cf;
}

.logout-btn {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-radius: 30px;
    color: #00b7ff;
    font-size: 16px;
    background: #f0f0f0;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.logout-btn:hover {
    color: #ffffff;
    background: #0095cf;
}

.input-box:last-of-type {
    margin-bottom: 20px;
}