    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
    }

    body {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: flex-start; 
        background-color: #ffffff;
    }

    .login-container {
        width: 100%;
        max-width: 330px; 
        text-align: center;
        margin-top: 100px; 
    }

    .logo-section {
        margin-bottom: 20px;
    }

    .logo-section img {
        width: 316px;
        height: auto;
    }

    .input-group {
        display: flex;
        margin-bottom: 10px;
        border: 1px solid #d1d1d1;
        border-radius: 2px; 
        overflow: hidden;
        height: 42px;
    }

    .input-icon {
        background-color: #ffffff;
        padding: 0 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #333;
        font-size: 16px;
        width: 45px;
    }

    .input-group input {
        flex: 1;
        border: none;
        padding: 8px 10px;
        outline: none;
        font-size: 16px;
        color: #333;
        border-left: 1px solid #d1d1d1;
    }

    .login-btn {
        width: 100%;
        padding: 10px;
        background-color: #33beff;
        border: none;
        border-radius: 2px;
        color: white;
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
        margin-top: 5px;
    }

    .footer-link {
        margin-top: 15px;
    }

    .footer-link a {
        text-decoration: none;
        color: #7a7a7a;
        font-size: 12px;
    }