
    .sing-up-right {
        background: rgba(255, 255, 255, 0.9);
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 500px;
    }

    .sing-up-right h3 {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 20px;
        color: #121514; /* Ubah warna sesuai dengan branding */
    }

    .sing-up-right p {
        color: #555;
        margin-bottom: 30px;
        font-size: 16px;
    }

    .custome-form {
        border-radius: 10px;
        padding-left: 40px;
        padding-right: 40px;
        font-size: 16px;
        margin-bottom: 20px;
        height: 45px;
    }

    .custome-form:focus {
        box-shadow: none;
        border-color: #2A8B71; /* Ganti sesuai branding */
    }

    .fa-user, .fa-key {
        position: absolute;
        top: 12px;
        left: 10px;
        color: #aaa;
    }

    .log-in button {
        background-color: #2A8B71;
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        width: 100%;
        font-size: 16px;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .log-in button:hover {
        background-color:rgb(0, 0, 0);
    }

    .another {
        margin-top: 20px;
    }

    .another a {
        color:#1E4AE9;
        text-decoration: none;
        font-weight: bold;
    }

    .another a:hover {
        text-decoration: underline;
    }

    .position-relative {
        position: relative;
    }

    .fa-eye {
        position: absolute;
        right: 20px;
        top: 12px;
        cursor: pointer;
    }

    .text-end {
        display: block;
        text-align: end;
        font-size: 14px;
    }